-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "sanplay",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/react": "^15.0.27",
"@types/react-dom": "^15.5.0",
"immutability-helper": "^2.2.3",
"lodash": "^4.17.4",
"material-ui": "next",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-scripts": "1.0.8",
"redux": "^3.6.0"
},
"devDependencies": {
"@storybook/react": "^3.1.6",
"node-sass-chokidar": "0.0.2",
"npm-run-all": "^4.0.2",
"react-redux": "^5.0.5",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-filter-actions": "^1.2.2",
"redux-devtools-filterable-log-monitor": "^0.6.8",
"redux-devtools-log-monitor": "^1.3.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
}
}