-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.9 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
47
48
49
50
51
52
{
"name": "IoT-Party",
"version": "0.1.0",
"private": true,
"dependencies": {
"deepstream.io-client-js": "^2.3.0",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2",
"pixi.js": "^4.7.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-md": "^1.3.0",
"react-scripts": "1.1.1",
"react-spinners": "^0.2.6",
"webfontloader": "^1.6.28"
},
"scripts": {
"start-js": "PORT=3000 react-scripts start",
"start-js-local": "PORT=3000 REACT_APP_LOCAL=1 react-scripts start",
"start-js-pc": "react-scripts start",
"build-css": "node-sass-chokidar --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && npm run build-css -- --watch --recursive",
"start": "PORT=3001 && npm-run-all -p watch-css start-js",
"start-local": "npm-run-all -p watch-css start-js-local",
"start-pc": "set PORT=3000 && npm-run-all -p watch-css start-js-pc",
"start-pc-local": "set PORT=3001 && set REACT_APP_LOCAL=1 && npm-run-all -p watch-css start-js-pc",
"build": "npm run build-css && react-scripts build",
"postbuild": "rimraf build/**/*.map",
"test": "npm run build-css && react-scripts test --forceExit --env=jsdom && npm run lint",
"eject": "react-scripts eject",
"lint": "eslint src/",
"lintfix": "eslint src/ --fix"
},
"devDependencies": {
"canvas-prebuilt": "^1.6.5-prerelease.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"prettier": "^1.10.2",
"react-test-renderer": "^16.3.2",
"rimraf": "^2.6.2"
}
}