forked from FreezingMoon/AncientBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.82 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
99
100
101
102
103
104
{
"name": "ancientbeast",
"version": "0.5.0",
"description": "Ancient Beast Game",
"main": "deploy/index.html",
"homepage": "https://AncientBeast.com",
"author": " Dread Knight <[email protected]>",
"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",
"express": "^4.17.3",
"jquery": "^3.5.0",
"jquery.transit": "0.9.12",
"js-cookie": "^3.0.1",
"node-emoji": "^1.10.0",
"phaser-ce": "2.16.0",
"semver": "^7.5.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"@types/jquery": "^3.5.9",
"@types/underscore": "^1.11.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"dotenv-defaults": "^5.0.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"expose-loader": "^4.0.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.5.2",
"underscore": "^1.12.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": "18.12.x"
},
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"start": "cross-env NODE_ENV=production node server.js",
"start:dev": "cross-env NODE_ENV=development webpack-dev-server",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint-error": "eslint --quiet \"src/**/*.{js,ts}\"",
"lint-fix": "eslint --fix \"src/**/*.{js,ts}\"",
"lint-staged": "lint-staged",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"test": "npm run lint && npm run build && jest",
"jest": "jest",
"start:jest": "jest --watch"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --quiet --fix"
],
"*.{ts,js,json,less,md}": [
"prettier --write"
]
}
}