forked from FreezingMoon/AncientBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ancientbeast",
"version": "0.4.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"
],
"funding": {
"type": "Donate",
"url": "https://ancientbeast.com/contribute/#donate"
},
"dependencies": {
"ajv": "^6.10.2",
"compression": "^1.7.4",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"jquery.transit": "0.9.12",
"phaser-ce": "^2.14.0",
"socket.io": "^2.3.0",
"socket.io-client": "2.3.0",
"webpack": "^4.41.2",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"expose-loader": "^0.7.5",
"file-loader": "^4.2.0",
"husky": "^3.0.9",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"prettier-eslint-cli": "^5.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.2"
},
"engines": {
"node": "10.x"
},
"scripts": {
"build": "npm run assetLister && webpack --mode=production",
"build:dev": "npm run assetLister && webpack --mode=development",
"start": "cross-env NODE_ENV=production node server.js",
"start:dev": "cross-env NODE_ENV=development node server.js",
"assetLister": "node ./assetLister.js",
"lint": "eslint src/*.js src/**/*.js",
"lint-fix": "eslint --fix src/*.js src/**/*.js",
"format": "prettier-eslint --write \"src/**/*.js\"",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"test": "npm run lint && npm run build"
},
"lint-staged": {
"*.{js,json,less,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}