-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "runner-score-arcade",
"version": "1.0.0",
"description": "Phaser 3 endless dodger with hazards, power-ups, touch controls, Express hosting, and Kinvey-style leaderboard integration.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"build": "node --openssl-legacy-provider ./node_modules/webpack/bin/webpack.js --mode development --config webpack.server.config.js && node --openssl-legacy-provider ./node_modules/webpack/bin/webpack.js --mode production --config webpack.dev.config.js",
"start": "node ./dist/server.js",
"your-custom-script": "echo npm",
"deploy": "gh-pages -d dist",
"publish-demo": "npm run build && npm run deploy"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"browserify-middleware": "^8.1.1",
"enchilada": "^0.13.0",
"esm": "^3.2.22",
"express": "^4.16.4",
"express-browserify": "^1.0.3",
"express-handlebars": "^3.0.0",
"jquery": "^3.4.1",
"lodash": "^4.17.11",
"phaser": "^3.15.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"uniq": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-node-externals": "^1.7.2"
}
}