-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "base",
"version": "0.1.0",
"description": "Base ts files used in several projects",
"main": "index.js",
"types": "index.d.ts",
"keywords": [],
"author": "",
"license": "UNLICENSED",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"_clear": "rimraf .build .dist",
"_tsc": "tsc",
"_start": "node20 --trace-deprecation ./.build/test/index.js",
"lint:fix": "eslint --fix src",
"test": "run-s lint:fix _clear _tsc _start"
},
"imports": {
"#BaseNode/*": "./.build/src/*.js"
},
"dependencies": {
"@vinejs/compiler": "^2.5.0",
"@vinejs/vine": "^2.1.0",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"express": "^4.19.2",
"express-oas-validator": "^3.0.1",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"js-base64": "^3.7.7",
"mongodb": "^6.8.0",
"promise-mysql": "^5.2.0",
"relaxed-json": "^1.0.3",
"socks-proxy-agent": "^8.0.4",
"validator": "^13.12.0",
"validator-fluent": "^0.4.2"
},
"devDependencies": {
"@eslint/create-config": "^1.3.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.28.0",
"javascript-obfuscator": "^4.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^4.24.0",
"rollup-plugin-javascript-obfuscator": "^1.0.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-typescript2": "^0.36.0",
"supertest": "^7.0.0",
"supervisor": "^0.12.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
}
}