generated from CalyCherkaoui/phaser3-webpack-babel-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
57
58
59
60
{
"name": "shooter-game-space-battle",
"version": "1.1.2",
"description": "A shooter game with phaser3",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open",
"test": "jest"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"setupFilesAfterEnv": [
"jest-expect-subclass"
],
"moduleNameMapper": {
"\\.(gif|ttf|eot|svg|png|mp3)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalyCherkaoui/shooter-game-space-battle.git"
},
"author": "Houda Cherkaoui",
"license": "MIT",
"bugs": {
"url": "https://github.com/CalyCherkaoui/shooter-game-space-battle/issues"
},
"homepage": "https://github.com/CalyCherkaoui/shooter-game-space-battle#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-regenerator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^4.3.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"raw-loader": "^3.1.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"jest-expect-subclass": "^1.0.1",
"node-fetch": "^2.6.1",
"phaser": "^3.52.0",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^2.3.8",
"webpack": "^4.46.0",
"webpack-merge": "^4.2.2"
}
}