-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
42
43
44
45
46
47
48
{
"name": "shootergame",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"private": true,
"scripts": {
"test": "jest",
"testdev": "jest --watch",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack serve --host 0.0.0.0 --port 7000",
"dev": "webpack --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbjude/thegame.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kbjude/thegame/issues"
},
"homepage": "https://github.com/kbjude/thegame#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"style-loader": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"phaser": "^3.24.1"
}
}