This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"name": "@storycopter/ui",
"version": "0.0.18",
"license": "BSD-3-Clause",
"main": "lib/index.js",
"dependencies": {
"@material-ui/core": "4.9.11",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.50",
"gatsby-background-image": "1.1.1",
"gatsby-image": "2.3.5",
"material-ui-popup-state": "1.5.4",
"polished": "3.5.2",
"react-slick": "0.25.2"
},
"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-transform-modules-umd": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@sambego/storybook-state": "2.0.1",
"@storybook/addon-actions": "next",
"@storybook/addon-docs": "next",
"@storybook/addon-essentials": "next",
"@storybook/addon-knobs": "next",
"@storybook/addon-links": "next",
"@storybook/addon-viewport": "next",
"@storybook/addons": "next",
"@storybook/react": "next",
"@storybook/storybook-deployer": "2.8.5",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"nodemon": "2.0.3",
"prettier": "2.0.5",
"prettier-eslint": "9.0.1",
"prettier-stylelint": "0.4.2",
"pretty-quick": "2.0.1",
"storybook-dark-mode": "0.4.1",
"styled-components": "^5.1.0",
"stylelint-config-prettier": "8.0.1",
"stylelint-prettier": "1.1.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"scripts": {
"build": "webpack -p --config ./webpack.config.js",
"build:dev": "nodemon --watch src --exec yarn build",
"clean-lib": "rm -rf ./lib",
"clean": "npx rimraf **/node_modules/",
"build-storybook": "build-storybook -o ./public -s ./static",
"deploy": "build-storybook -o ./public -s ./static && netlify deploy --dir=public --prod",
"start": "start-storybook -p 8080 -s ./static --ci"
}
}