-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
53
{
"name": "global-kitchen",
"version": "0.0.0",
"description": "a restaurant simulation game",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server",
"build": "webpack -p",
"watch-lib": "npm run build-lib -- -w",
"build-lib": "webpack --config lib/webpack.config.js",
"build-lib-prod": "npm run build-lib -- -p",
"build-prod": "npm run build-lib-prod && npm run build",
"deploy": "script/deploy"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"firebase-tools": "^3.14.0",
"react-hot-loader": "^3.1.2",
"through2": "^2.0.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"babel-eslint": "^8.0.2",
"chokidar": "^1.7.0",
"eslint-cli": "^1.1.1",
"express": "^4.16.2",
"minimist": "^1.2.0",
"node-gyp": "^3.6.2",
"path": "^0.12.7",
"pixi.js": "^4.6.1",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
}
}