forked from FreezingMoon/AncientBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "ancientbeast",
"version": "0.3.0",
"description": "Ancient Beast Game",
"main": "deploy/index.html",
"homepage": "https://AncientBeast.com",
"author": " Dread Knight <[email protected]>",
"license": " (CC-BY-SA-3.0 OR AGPL-3.0)",
"repository": {
"type": "git",
"url": "https://github.com/FreezingMoon/AncientBeast.git"
},
"bugs": {
"url": "https://github.com/FreezingMoon/AncientBeast/issues"
},
"keywords": [
"game",
"strategy",
"phaser"
],
"dependencies": {
"compression": "^1.6.2",
"express": "^4.13.4",
"html-webpack-plugin": "^2.30.1",
"jquery": "1.12.4",
"jquery-mousewheel": "3.1.13",
"jquery-ui": "^1.12.1",
"jquery.kinetic": "2.2.4",
"jquery.transit": "0.9.12",
"phaser-ce": "2.7.10",
"socket.io": "^1.3.5",
"socket.io-client": "1.3.5"
},
"devDependencies": {
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"prettier": "^1.8.2",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "yarn run generateManifest && webpack --env.production",
"build:dev": "yarn run generateManifest && webpack",
"dev": "webpack --watch",
"generateManifest": "node manifestGenerator.js",
"lint": "eslint src/**/*.js",
"postinstall": "yarn run build"
}
}