This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 KB
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
{
"name": "project-bacon",
"version": "1.0.0",
"description": "",
"author": "MassConfusion",
"main": "server.js",
"scripts": {
"start": "nodemon --exec babel-node server/server.js",
"start:prod": "node dist/server/server.js",
"build": "npm run build:server && npm run build:client",
"build:client": "webpack --mode production -p",
"build:server": "babel server -d dist/server",
"lint": "eslint src ./**.js -f table --ext .js",
"lint-fix": "eslint src ./**.js -f table --ext .js --fix",
"lint-travis": "eslint src ./**.js --ext .js"
},
"nodemonConfig": {
"env": {
"NODE_ENV": "development"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/MassConfusion/ProjectBacon.git"
},
"license": "Apache 2.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"dat.gui": "^0.6.5",
"eslint": "^4.14.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expose-loader": "^0.7.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"node-sass": "^4.7.2",
"nodemon": "^1.17.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-middleware": "^3.0.1",
"webpack-dev-server": "^3.1.1",
"webpack-hot-middleware": "^2.21.2"
},
"dependencies": {
"bootstrap": "^4.0.0",
"express": "^4.16.2",
"jquery": "^3.3.1",
"phaser": "^3.3.0",
"popper.js": "^1.14.1",
"socket.io": "^2.0.4",
"webfontloader": "^1.6.28"
}
}