-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
47
48
49
50
51
52
{
"name": "shooter-game",
"version": "1.0.0",
"description": "A Phaser 3 Game project",
"main": "src/Config/config.js",
"scripts": {
"build": "webpack",
"start": "npm run build && webpack-dev-server --port=8000",
"lint": "npx eslint src/ --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visva-dev/Shooter-Game.git"
},
"keywords": [
"phaser",
"3",
"javascript",
"html5",
"game"
],
"author": "Visvaldas Rapalis",
"license": "ISC",
"bugs": {
"url": "https://github.com/visva-dev/Shooter-Game/issues"
},
"homepage": "https://github.com/visva-dev/Shooter-Game#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"raw-loader": "^3.1.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"axios": "^0.21.1",
"phaser": "^3.50.0",
"phaser3-rex-plugins": "^1.1.36"
}
}