forked from FreezingMoon/AncientBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.64 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ancientbeast",
"version": "0.4.0",
"description": "Ancient Beast Game",
"main": "deploy/index.html",
"homepage": "https://AncientBeast.com",
"author": " Dread Knight <dk.vali@gmail.com>",
"license": " (CC-BY-SA-4.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": {
"@heroiclabs/nakama-js": "^2.0.1",
"compression": "^1.7.4",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"dotenv-defaults": "^2.0.1",
"dotenv-webpack": "^3.0.0",
"express": "^4.17.1",
"jquery": "^3.5.0",
"jquery.transit": "0.9.12",
"js-cookie": "^3.0.1",
"node-emoji": "^1.10.0",
"phaser-ce": "2.16.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.9.5",
"@types/jquery": "^3.5.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"css-loader": "^3.5.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expose-loader": "^0.7.5",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lint-staged": "^10.1.3",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^3.1.0",
"ts-loader": "^8.3.0",
"typescript": "^4.5.2",
"underscore": "^1.12.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": "16.13.x"
},
"scripts": {
"build": "npm run clean && npm run assetLister && webpack --mode=production",
"build:dev": "npm run clean && npm run assetLister && webpack --mode=development",
"start": "cross-env NODE_ENV=production node server.js",
"start:dev": "cross-env NODE_ENV=development webpack-dev-server",
"assetLister": "node ./assetLister.js",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint-fix": "eslint --fix \"src/**/*.{js,ts}\"",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"test": "npm run lint && npm run build",
"clean": "rimraf ./deploy"
},
"lint-staged": {
"*.{js,json,less,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}