-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 KB
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
{
"name": "shooter_javascript_game",
"version": "1.0.0",
"description": "A javascript shooter game",
"main": "code.js",
"scripts": {
"test": "jest --watchAll",
"build": "webpack --progress --mode=production",
"watch": "webpack --progress --watch",
"server": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterrobert/Shooter_javascript_game.git"
},
"author": "peter",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterrobert/Shooter_javascript_game/issues"
},
"homepage": "https://github.com/peterrobert/Shooter_javascript_game#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"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",
"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.11.0"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-install": "^2.1.0",
"css-loader": "^5.0.0",
"file-loader": "^6.1.1",
"jest-canvas-mock": "^2.3.0",
"node-fetch": "^2.6.1",
"phaser": "^3.24.1",
"phaser-webpack-loader": "^2.0.0",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0"
},
"transform": {
"\\.js$": "<rootDir>/node_modules/babel-jest"
}
}