-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.75 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
61
62
63
64
{
"name": "js-shooter-game",
"jest": {
"verbose": true
},
"version": "1.0.0",
"description": "A javascript shooter game using phaser.js",
"main": "index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch */test",
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okikiola11/js-shooter-rpg.git"
},
"keywords": [
"shooter-game",
"phaser.js",
"javascript",
"enemies"
],
"author": "Apelehin Okikiola",
"license": "ISC",
"bugs": {
"url": "https://github.com/okikiola11/js-shooter-rpg/issues"
},
"homepage": "https://github.com/okikiola11/js-shooter-rpg#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-expect-subclass": "^1.0.1",
"jest-fetch-mock": "^3.0.3",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"phaser": "^3.50.0",
"raw-loader": "^3.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^2.2.1"
}
}