-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "mcu-frontend",
"version": "0.0.1",
"private": true,
"dependencies": {
"faye": "^1.2.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-autobind": "^1.0.6",
"react-bootstrap": "^0.31.3",
"react-dom": "^15.6.1",
"react-flip-move": "^2.9.15",
"react-modal": "^2.3.2",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-prop-types": "^0.0.1",
"react-scripts": "1.0.13",
"superagent": "^3.6.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^1.0.0",
"mocha": "^3.5.1",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.1",
"prettier": "^1.5.3"
},
"scripts": {
"watch-css": "nodemon -e scss -w styles -x 'npm run build:css'",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build:css && react-scripts build",
"build:css": "postcss src/main.css --use autoprefixer -d src/",
"prebuild:css": "node-sass styles/main.scss -o src/",
"test": "react-scripts test --env=jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
}