-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "less_is_fewer",
"version": "1.0.0",
"description": "Game Jam 2018 Game",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirugh/less_is_fewer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sirugh/less_is_fewer/issues"
},
"homepage": "https://github.com/sirugh/less_is_fewer#readme",
"dependencies": {
"phaser": "^3.14.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.2",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"babel": {
"presets": [
"env"
]
}
}