forked from pinkkis/phaser-driving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
{
"name": "phaser-driver",
"version": "0.8.0",
"description": "Outrun style driving game in Phaser 3",
"main": "index.js",
"scripts": {
"itchio": "npm run build && node ./tasks/createZip.js",
"build": "cross-env NODE_ENV=production webpack --mode production",
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --progress --port=8000 --open"
},
"browserslist": "> 1%, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/pinkkis/phaser-driver.git"
},
"keywords": ["phaser", "game", "driving", "outrun"],
"author": "Kristian Koivisto-Kokko <[email protected]> (http://pinkkis.com/)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pinkkis/phaser-minesweeper/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/pinkkis/phaser-driver/issues"
},
"homepage": "https://github.com/pinkkis/phaser-driver#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-typescript": "^7.3.3",
"@csstools/normalize.css": "^9.0.1",
"@pinkkis/phaser-plugin-pasuuna": "^0.5.2",
"archiver": "^3.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"phaser": "^3.16.2",
"raw-loader": "^2.0.0",
"source-map-loader": "^0.2.4",
"stats-js": "^1.0.0",
"terser-webpack-plugin": "^1.2.3",
"three": "^0.103.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}