-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 849 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 849 Bytes
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
{
"name": "javascript-platformer",
"description": "An attempt at a decent platforming game",
"repository": {
"type": "git",
"url": "git+https://github.com/gitjuba/javascript-platformer.git"
},
"author": {
"name": "Jussi Mattas",
"email": "jussi.mattas@gmail.com"
},
"scripts": {
"build": "ENV=prod webpack",
"dev": "webpack-dev-server",
"test": "mocha --require @babel/register"
},
"dependencies": {
"body-parser": "^1.19.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.14"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"mocha": "^5.2.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.7.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}