-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
{
"name": "pongy",
"version": "0.1.0",
"private": true,
"description": "Track ping pong matches",
"author": "Adam Gruber",
"license": "MIT",
"dependencies": {
"animate-css-styled-components": "^0.0.17",
"babel-cli": "^6.26.0",
"common-styled-components": "^0.0.1",
"debug": "^3.0.0",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "2",
"koa-router": "^7.2.1",
"koa-static": "3",
"lodash": "^4.17.4",
"mobx": "^3.2.2",
"mobx-react": "^4.2.2",
"mobx-react-devtools": "^4.2.15",
"nodemon": "^1.11.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.11",
"react-websocket": "^1.2.0",
"styled-components": "^2.1.2",
"uuid": "^3.1.0",
"ws": "^3.1.0"
},
"scripts": {
"start": "NODE_PATH=src react-scripts start",
"start:dev": "(yarn build:server && yarn start:server:dev) & yarn watch:server & yarn start",
"build": "NODE_PATH=src react-scripts build",
"start:server": "node ./server/build/index.js",
"start:server:dev": "DEBUG=koa* nodemon ./server/build/index.js",
"watch:server": "NODE_ENV=development babel --watch ./server/src -d ./server/build",
"build:server": "NODE_ENV=production babel ./server/src -d ./server/build",
"test": "NODE_PATH=src react-scripts test --env=jsdom",
"lint": "node_modules/eslint/bin/eslint.js src",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"mock-socket": "^7.1.0"
}
}