-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 951 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 951 Bytes
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
{
"name": "space-shooter",
"version": "1.0.0",
"description": "CoderDojo Space Shooter Example",
"main": "./dist/index.html",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build-dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"author": "Rainer Stropek, CoderDojo Linz",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-webpack-plugin": "^0.1.0",
"html-webpack-plugin": "^3.2.0",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"phaser": "^3.55.0"
}
}