-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.36 KB
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
{
"name": "league-prod-toolkit-core",
"version": "1.13.5",
"scripts": {
"build": "tsc && webpack",
"build:modules": "node dist/utils/build-modules.js",
"update": "node dist/utils/update.js",
"postbuild": "copyfiles core/web/views/**.* core/web/public/**.* dist",
"start": "node --trace-warnings dist/core/app.js",
"tsc": "tsc",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"prettier": "prettier --write --ignore-unknown ./**",
"setuphooks": "git config --local core.hooksPath .hooks",
"hooks:pre-commit": "npm run lint && npm run build"
},
"dependencies": {
"axios": "^1.12.2",
"body-parser": "^2.2.2",
"bootstrap": "^4.5.0",
"cli-progress": "^3.12.0",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"express-fileupload": "^1.5.2",
"express-rate-limit": "^8.1.0",
"fs-extra": "^11.3.2",
"inquirer": "^8.2.7",
"jquery": "^3.7.1",
"jsonwebtoken": "^9.0.2",
"jspath": "^0.4.0",
"jwt-decode": "^3.1.2",
"minimist": "^1.2.8",
"nanospinner": "^1.2.2",
"pug": "^3.0.3",
"semver": "^7.7.2",
"send": "^1.2.0",
"toastr": "^2.1.4",
"tslib": "^2.8.1",
"uniqid": "^5.3.0",
"uuid-apikey": "^1.5.3",
"validator": "^13.15.22",
"winston": "^3.19.0",
"ws": "^8.18.3",
"zip-lib": "^1.1.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.3",
"@types/express-fileupload": "^1.5.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/minimist": "^1.2.5",
"@types/node": "^24.5.2",
"@types/send": "^1.2.1",
"@types/uniqid": "^5.3.4",
"@types/validator": "^13.15.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"copy-webpack-plugin": "^13.0.1",
"copyfiles": "^2.2.0",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"nodemonConfig": {
"watch": [
"core",
"modules"
],
"exec": "npm start",
"ext": "ts,js,json,pug,css"
}
}