-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.65 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
49
50
51
52
53
54
55
56
{
"name": "marthas_rescue_shooter_game",
"version": "1.0.0",
"description": "This is a shooter game featuring Martha, a battle aircraft pilot who's trying to rescue her father.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MuriloRoque/marthas_rescue_shooter_game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MuriloRoque/marthas_rescue_shooter_game/issues"
},
"homepage": "https://github.com/MuriloRoque/marthas_rescue_shooter_game#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-core": "^6.26.3",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"file-loader": "^6.0.0",
"jest": "^26.1.0",
"jest-canvas-mock": "^2.2.0",
"raw-loader": "^4.0.1",
"regenerator": "^0.14.5",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.3.0",
"node-fetch": "^2.6.1",
"phaser": "^3.23.0",
"phaser3-rex-plugins": "^1.1.19",
"regenerator-runtime": "^0.13.5",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-merge": "^4.2.2"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
}
}