-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.85 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "stormbreaker",
"version": "0.2.2",
"description": "Stormbreaker React Component Library",
"main": "index.js",
"module": "es6/index.js",
"jsnext:main": "es6/index.js",
"sideEffects": [
"./utils/*",
"./es6/utils/*"
],
"scripts": {
"build.preBuild": "node scripts/preBuild.js",
"build.babel": "BABEL_ENV=cjs babel ./src --out-dir ./build --ignore '**/scss,**/__test__, **/*.stories.js'",
"build.babelEs6": "babel ./src --out-dir ./build/es6 --ignore '**/scss,**/__test__, **/*.stories.js'",
"build.postBuild": "node scripts/postBuild.js",
"build": "yarn build.preBuild && yarn build.babel && yarn build.babelEs6",
"storybook": "start-storybook -p 7007 -s public",
"storybook.docs": "start-storybook -p 7007 -s public --docs",
"build-storybook": "build-storybook -s public",
"build-storybook.docs": "build-storybook --docs"
},
"keywords": [
"stormbreaker",
"react",
"react component library"
],
"contributors": [
{
"name": "Anoop Raveendran",
"email": "[email protected]",
"url": "https://anooprav7.com"
},
{
"name": "Nabeel Thurakkal",
"email": "[email protected]",
"url": "https://github.com/thurakkal92"
}
],
"bugs": "https://github.com/anooprav7/stormbreaker-cl/issues",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anooprav7/stormbreaker-cl.git"
},
"homepage": "https://stormbreaker-v2.netlify.app/",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@styled-system/prop-types": "^5.1.5",
"emotion-theming": "^10.0.27",
"prop-types": "^15.7.2",
"react-loadable": "^5.5.0",
"styled-system": "^5.1.5"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-info": "^5.3.17",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.0.33",
"cli-msg": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2"
}
}