beem-component 1.4.1 → 1.4.2
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.
- package/package.json +75 -75
- package/build-storybook.log +0 -14621
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
2
|
+
"name": "beem-component",
|
|
3
|
+
"version": "1.4.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "dist/components/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "react-scripts start",
|
|
8
|
+
"build": "react-scripts build",
|
|
9
|
+
"test": "react-scripts test",
|
|
10
|
+
"eject": "react-scripts eject",
|
|
11
|
+
"clean": "rimraf dist",
|
|
12
|
+
"compile": "npm run clean && cross-env NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,stories.js,__snapshots__",
|
|
13
|
+
"storybook": "start-storybook -p 6006",
|
|
14
|
+
"build-storybook": "build-storybook"
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"react": "^17.0.2",
|
|
18
|
+
"react-dom": "^17.0.2",
|
|
19
|
+
"react-scripts": "4.0.3",
|
|
20
|
+
"web-vitals": "^1.1.2"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@emotion/react": "^11.7.1",
|
|
24
|
+
"@emotion/styled": "^11.6.0",
|
|
25
|
+
"@material-ui/core": "^4.11.4",
|
|
26
|
+
"@material-ui/icons": "^4.11.2",
|
|
27
|
+
"@mui/icons-material": "^5.2.1",
|
|
28
|
+
"@mui/material": "^5.2.3",
|
|
29
|
+
"js-file-download": "^0.4.12",
|
|
30
|
+
"node-sass": "^6.0.1",
|
|
31
|
+
"polished": "^4.1.3",
|
|
32
|
+
"react": "^17.0.2",
|
|
33
|
+
"react-dom": "^17.0.2",
|
|
34
|
+
"react-router-dom": "^5.3.0",
|
|
35
|
+
"react-scripts": "4.0.3",
|
|
36
|
+
"save": "^2.4.0",
|
|
37
|
+
"styled-components": "^5.3.0",
|
|
38
|
+
"web-vitals": "^1.1.2"
|
|
39
|
+
},
|
|
40
|
+
"eslintConfig": {
|
|
41
|
+
"extends": [
|
|
42
|
+
"react-app",
|
|
43
|
+
"react-app/jest"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"browserslist": {
|
|
47
|
+
"production": [
|
|
48
|
+
">0.2%",
|
|
49
|
+
"not dead",
|
|
50
|
+
"not op_mini all"
|
|
51
|
+
],
|
|
52
|
+
"development": [
|
|
53
|
+
"last 1 chrome version",
|
|
54
|
+
"last 1 firefox version",
|
|
55
|
+
"last 1 safari version"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@babel/cli": "^7.14.8",
|
|
60
|
+
"@babel/preset-env": "^7.14.8",
|
|
61
|
+
"@babel/preset-react": "^7.14.5",
|
|
62
|
+
"cross-env": "^7.0.3",
|
|
63
|
+
"@storybook/addon-actions": "^6.3.2",
|
|
64
|
+
"@storybook/addon-controls": "^6.3.12",
|
|
65
|
+
"@storybook/addon-docs": "^6.3.12",
|
|
66
|
+
"@storybook/addon-essentials": "^6.3.12",
|
|
67
|
+
"@storybook/addon-knobs": "^6.3.1",
|
|
68
|
+
"@storybook/addon-links": "^6.3.2",
|
|
69
|
+
"@storybook/addons": "^6.4.9",
|
|
70
|
+
"@storybook/node-logger": "^6.3.2",
|
|
71
|
+
"@storybook/preset-create-react-app": "^3.2.0",
|
|
72
|
+
"@storybook/react": "^6.3.2",
|
|
73
|
+
"@storybook/theming": "^6.4.9",
|
|
74
|
+
"storybook-addon-jsx": "^7.3.14"
|
|
75
|
+
}
|
|
76
|
+
}
|