generated from luisvinicius09/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 983 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
35
36
37
38
39
{
"name": "shooterjs",
"version": "1.0.0",
"description": "Simple shooter game build with PhaserJS",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"watch": "webpack --watch",
"webpackServer": "webpack serve",
"server": "http-server build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luisvinicius09/repo-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/luisvinicius09/shooterJS/issues"
},
"homepage": "https://github.com/luisvinicius09/shooterJS",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.21.1",
"phaser": "^3.54.0"
}
}