-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 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
{
"name": "innenu-service",
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"bundle:encrypt": "rollup -c scripts/encrypt.ts --configPlugin esbuild",
"debug": "cross-env NODE_ENV=development pnpm build && cross-env NODE_ENV=development node dist/index.js --expose-gc",
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"lint": "eslint --fix . && prettier --check --write .",
"lint:check": "eslint . && prettier --check .",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "eslint --fix"
},
"dependencies": {
"@alicloud/alinlp20200629": "3.1.0",
"@alicloud/openapi-client": "0.4.12",
"@mptool/net": "0.10.10",
"@mptool/parser": "0.10.10",
"body-parser": "2.0.1",
"cheerio": "1.0.0",
"compression": "1.7.5",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"crypto-js": "4.2.0",
"dotenv": "16.4.7",
"express": "5.0.0",
"iconv-lite": "0.6.3",
"js-sha1": "0.7.0",
"morgan": "1.10.0",
"mysql2": "3.12.0",
"picocolors": "1.1.1",
"qrcode": "1.5.4",
"uuid": "11.0.5"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@types/body-parser": "1.19.5",
"@types/compression": "1.7.5",
"@types/cookie-parser": "1.4.8",
"@types/cors": "2.8.17",
"@types/crypto-js": "4.2.2",
"@types/express": "5.0.0",
"@types/express-serve-static-core": "5.0.4",
"@types/morgan": "1.9.9",
"@types/node": "22.10.5",
"@types/qrcode": "1.5.5",
"@types/qs": "6.9.17",
"@types/uuid": "10.0.0",
"cross-env": "7.0.3",
"cz-git": "1.11.0",
"domhandler": "^5.0.3",
"eslint": "9.18.0",
"eslint-config-mister-hope": "0.4.1",
"express-rate-limit": "7.5.0",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"prettier": "3.4.2",
"rollup": "4.30.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">= 20"
}
}