-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "space-shooter-game",
"version": "1.0.0",
"description": "Implement a space shooter game",
"main": "src/index.js",
"private": true,
"scripts": {
"test": "jest",
"watch": "jest --watch",
"dev": "webpack-dev-server --config webpack/base.js --open",
"start": "node server.js",
"heroku-postbuild": "webpack --config webpack/prod.js",
"build": "webpack --config webpack/prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Theophile-Kango/space-shooter-game.git"
},
"author": "Theophile Kango <[email protected]>",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/Theophile-Kango/space-shooter-game/issues"
},
"homepage": "https://github.com/Theophile-Kango/space-shooter-game#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"file-loader": "^4.3.0",
"handy-storage": "^2.1.6",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.1.0",
"node-localstorage": "^2.1.6",
"raw-loader": "^3.1.0",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^2.3.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"express": "^4.17.1",
"jsdom": "^16.3.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"phaser": "^3.23.0"
}
}