-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
40 lines (40 loc) · 1.21 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": "react-scheduler-firebase",
"version": "0.1.0",
"private": true,
"homepage": "https://github.com/Tim1023/react-scheduler-firebase",
"dependencies": {
"firebase": "4.6.0",
"gh-pages": "^1.1.0",
"history": "^4.7.2",
"ical-generator": "^0.2.10",
"material-ui": "^0.19.4",
"moment": "^2.21.0",
"node-less-chokidar": "^0.1.2",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-big-calendar": "^0.19.0",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.3.0",
"react-file-download": "^0.3.5",
"react-loadable": "^5.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"uuid": "^3.2.1"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "npm run build-css && run-p -ncr watch-css start-js",
"start-js": "react-scripts start",
"build": "run-s -n build-css build-js",
"build-js": "react-scripts build",
"test": "run-s -n build-css test-js",
"test-js": "react-scripts test --env=jsdom",
"build-css": "node-less-chokidar src",
"watch-css": "node-less-chokidar src --watch",
"eject": "react-scripts eject"
}
}