-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "pacman-kaios",
"version": "1.0.5",
"description": "Pac-Man for KaiOS",
"main": "index.ts",
"scripts": {
"start": "webpack-dev-server --hot --port 3000",
"build": "NODE_ENV=development webpack",
"build:prod": "NODE_ENV=production webpack",
"deploy": "gh-pages -d dist",
"lint": "tslint src/**/*.ts",
"phaser-typings": "typings install github:photonstorm/phaser/v2/typescript/typings.json -GD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tombarr/pacman-kaios.git"
},
"author": "Tom Barrasso <[email protected]> (https://barrasso.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tombarr/pacman-kaios/issues"
},
"homepage": "https://github.com/Tombarr/pacman-kaios",
"dependencies": {
"phaser": "^2.6.2"
},
"devDependencies": {
"@types/node": "^12.7.12",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"expose-loader": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.2.3",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-copy-plugin": "^0.0.4",
"webpack-dev-server": "^4.0.0-rc.0"
}
}