-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "shooter-game",
"version": "1.1.0",
"description": "A space shooter implemented with phaser",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somoye123/Shooter-Game.git"
},
"author": "Somoye Ayotunde",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^6.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^4.2.0",
"jest": "^26.5.2",
"jest-canvas-mock": "^2.3.0",
"raw-loader": "^3.1.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.8.0",
"stylelint-scss": "^3.17.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"css-loader": "^4.3.0",
"phaser": "^3.20.1",
"regenerator-runtime": "^0.13.7",
"style-loader": "^1.3.0",
"webpack": "^4.41.2",
"html-webpack-plugin": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"webpack-merge": "^4.2.2",
"terser-webpack-plugin": "^2.2.1",
"node-fetch": "^2.6.1",
"case-sensitive-paths-webpack-plugin": "^2.3.0"
}
}