-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 737 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 737 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
{
"name": "catchmejump",
"version": "0.2.0",
"description": "Catch Me Platformer.",
"main": "src/index.js",
"scripts": {
"start": "npm run build && webpack-dev-server --port=8000",
"dev": "webpack --mode development && webpack-dev-server --mode development",
"build": "webpack --mode production",
"test": "echo no tests specified && exit 0"
},
"author": "Marco Klein",
"license": "MIT",
"dependencies": {
"phaser": "^3.19.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/underscore": "^1.8.18",
"expose-loader": "^0.7.5",
"ts-loader": "^5.4.5",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
}
}