-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
{
"name": "react-web-mobile-skeleton",
"version": "0.1.0",
"private": true,
"dependencies": {
"browser-detect": "^0.2.26",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"ignore-styles": "^5.0.1",
"react": "^16.3.1",
"react-device-detect": "^1.0.1",
"react-dom": "^16.3.1",
"react-helmet": "^5.2.0",
"react-loadable": "^5.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start:dev": "react-scripts start & npm run css:watch",
"start:server": "NODE_ENV=development NODE_PATH=src nodemon src/ssr --exec babel-node",
"css:watch": "nodemon -e scss -x \"npm run css:build\"",
"css:build": "node-sass --output-style compressed --source-map true sass/ -o public/css/",
"css:copydev": "nodemon -e css -x \"npm run scripts:copy-css\"",
"scripts:copy-css": "./scripts/copy-css.sh"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-async-import": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"node-sass": "^4.8.3"
}
}