-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "perseus",
"version": "0.1.0",
"private": true,
"devDependencies": {
"denode": "^1.10.4",
"devtools-typed": "https://github.com/sarahlim/devtools-typed",
"flow-bin": "^0.64.0",
"npm-run-all": "^4.0.2",
"prettier": "^1.7.4",
"react-scripts": "0.9.0"
},
"dependencies": {
"aphrodite": "^1.2.5",
"lodash": "^4.17.4",
"node-sass-chokidar": "^0.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-json-tree": "^0.10.9",
"react-redux": "^5.0.6",
"react-split-pane": "^0.1.57",
"react-treeview": "^0.4.7",
"redux": "^3.7.2",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.4",
"uuid": "^3.0.1"
},
"scripts": {
"server": "node src/server.js",
"build:css": "node-sass-chokidar src/ -o src/",
"watch:css": "npm run build:css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start:js": "react-scripts start",
"start": "npm-run-all -p watch:css start:js",
"format": "prettier --single-quote --trailing-comma es5 --parser flow --print-width 80 --write '{src,decls}/**/*.js'",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"eslintConfig": {
"extends": "react-app"
}
}