-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.09 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
{
"name": "ubat-game",
"version": "1.0.0",
"description": "",
"author": "Matthias Schmitt",
"license": "AGPL-3.0",
"main": "index.js",
"repository": "matzebond/ubat-game",
"scripts": {
"dev": "webpack-dev-server",
"clean": "rm -rf ./build ./dist",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "webpack",
"build:backend": "webpack --config ./webpack.config.backend.js",
"build:production": "npm run build:production:frontend && npm run build:production:backend",
"build:production:frontend": "NODE_ENV=production webpack -p",
"build:production:backend": "NODE_ENV=production webpack --config ./webpack.config.backend.js",
"backend:dev": "npm-run-all --parallel backend:watch backend:nodemon",
"backend:watch": "webpack --watch --config ./webpack.config.backend.js",
"backend:nodemon": "nodemon \"./build/server.js\" --watch \"./build\" --watch \"./migrations\" --delay 500ms"
},
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"mobx": "^3.1.5",
"mobx-react": "^4.1.3",
"preact-compat": "^3.14.3",
"react-autosuggest": "^9.0.0",
"react-bootstrap": "^0.30.8",
"react-router-dom": "^4.0.0-beta.7",
"react-tagsinput": "^3.15.1",
"screenfull": "^3.1.0",
"sqlite": "^2.3.0",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-imports": "^1.2.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2017-node7": "^0.5.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.2",
"html-webpack-plugin": "^2.28.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"preact": "^7.2.0",
"style-loader": "^0.13.2",
"webpack-dev-server": "^2.4.1",
"webpack-visualizer-plugin": "^0.1.11"
}
}