-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "shape_wars",
"version": "1.0.0",
"description": "An arcade shooter game using Vanilla JS, survive as many waves of enemies and get the highest score.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve",
"start": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrieltal/shape_wars.git"
},
"author": "Gabriel Talavera",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrieltal/shape_wars/issues"
},
"homepage": "https://shapewars.xyz",
"dependencies": {
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.11.0"
}
}