@clickview/auth 0.0.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license React
3
+ * react-dom.production.min.js
4
+ *
5
+ * Copyright (c) Facebook, Inc. and its affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+
11
+ /**
12
+ * @license React
13
+ * react.production.min.js
14
+ *
15
+ * Copyright (c) Facebook, Inc. and its affiliates.
16
+ *
17
+ * This source code is licensed under the MIT license found in the
18
+ * LICENSE file in the root directory of this source tree.
19
+ */
20
+
21
+ /**
22
+ * @license React
23
+ * scheduler.production.min.js
24
+ *
25
+ * Copyright (c) Facebook, Inc. and its affiliates.
26
+ *
27
+ * This source code is licensed under the MIT license found in the
28
+ * LICENSE file in the root directory of this source tree.
29
+ */
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@clickview/auth",
3
+ "version": "0.0.0-dev.0",
4
+ "description": "ClickView Auth",
5
+ "main": "dist/scripts/bundle.js",
6
+ "scripts": {
7
+ "start": "cross-env NODE_ENV=development webpack -w --config ./tooling/webpack.config.js",
8
+ "build": "cross-env NODE_ENV=production webpack --config ./tooling/webpack.config.js"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://gitlab.cvinternal.net/front-end/clickview"
13
+ },
14
+ "cv": {
15
+ "publishable": true,
16
+ "rebuildable": true
17
+ },
18
+ "author": "Cameron Hill, Shale Kuzmanovski",
19
+ "license": "ISC",
20
+ "devDependencies": {
21
+ "@clickview/eslint-config": "1.1.1"
22
+ },
23
+ "dependencies": {
24
+ "@clickview/styles": "1.20.0",
25
+ "whatwg-fetch": "3.4.1"
26
+ },
27
+ "babel": {
28
+ "presets": [
29
+ [
30
+ "@babel/preset-env",
31
+ {
32
+ "corejs": 3,
33
+ "useBuiltIns": "entry"
34
+ }
35
+ ]
36
+ ]
37
+ }
38
+ }
@@ -0,0 +1 @@
1
+ declare let __ENVIRONMENT__: 'development' | 'production';
@@ -0,0 +1 @@
1
+ declare module '*.scss';