-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "REboilerplate",
"version": "1.0.0",
"description": "The Boilerplate I create to build app with ReactJS+NodeJS+Express+webpack",
"main": "index.js",
"scripts": {
"start": "node private/server.js",
"prebuild": "rimraf public && rimraf private",
"build:client": "webpack --config webpack.prod.config.js -p",
"build:server": "webpack --config webpack.server.config.js -p",
"build": "npm-run-all build:*",
"dev": "NODE_ENV=dev webpack-dashboard -- nodemon --exec babel-node server/server.js --ignore public/ --ignore client/",
"flow": "flow",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"author": "Chan Yu An",
"license": "MIT",
"dependencies": {
"@tweenjs/tween.js": "^17.1.1",
"axios": "^0.21.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"keymaster": "^1.6.2",
"pixi.js": "^4.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"socket.io": "^2.0.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.6",
"flow-bin": "^0.61.0",
"html-webpack-plugin": "^2.30.1",
"jsdoc": "^3.5.5",
"json-loader": "^0.5.7",
"minami": "^1.2.3",
"node-sass": "^4.5.3",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"postcss-loader": "^1.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dashboard": "^1.0.2",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
}
}