28 lines
793 B
JSON
28 lines
793 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0",
|
|
"react-md": "^1.2.8",
|
|
"react-scripts": "1.0.17",
|
|
"webfontloader": "^1.6.28"
|
|
},
|
|
"scripts": {
|
|
"build-css": "node-sass-chokidar --include-path ./node_modules src/ -o src/",
|
|
"watch-css-mine": "npm run build-css && npm run build-css --watch --recursive",
|
|
"watch-css": "nodemon -e scss -x \"npm run watch-css-mine\"",
|
|
"start-js": "react-scripts start",
|
|
"start": "npm-run-all -p watch-css start-js",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"devDependencies": {
|
|
"node-sass": "^4.7.2",
|
|
"nodemon": "^1.12.1",
|
|
"npm-run-all": "^4.1.2"
|
|
}
|
|
}
|