generated from JamesSkemp/phaser-3-vsc-typescript-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 998 Bytes
/
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
{
"name": "the-last-voyage-game",
"version": "0.0.1",
"description": "A game of space exploration for the Github Game Jam 2020",
"private": true,
"author": {
"name": "Justin Reardon",
"email": "[email protected]",
"url": "https://www.jmreardon.com"
},
"homepage": "https://www.jmreardon.com",
"dependencies": {
"phaser": "^3.54.0"
},
"scripts": {
"build": "webpack --mode production && zip -r -X the-last-voyage.zip public",
"build-dev": "webpack --mode none",
"start:dev": "webpack-dev-server --mode development",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx || (exit 0)"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.22.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}