-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 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
{
"name": "DakboardServer",
"version": "0.0.0",
"scripts": {
"build": "ts-node ./scripts/build.ts",
"clean-install": "rm -rf ./node_modules && rm -r package-lock.json && npm i",
"dev": "NODE_ENV=development ts-node ./src",
"dev:hot": "nodemon --exec \"npm run dev\" --watch ./src --ext .ts",
"lint": "eslint --flag unstable_ts_config",
"start": "NODE_ENV=production node -r ./config.js ./dist",
"test": "NODE_ENV=test ts-node ./spec",
"test:hot": "nodemon --exec \"npm run test\" --watch ./src --watch ./spec --ext .ts",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"axios": "^1.7.9",
"cookie-parser": "^1.4.7",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"helmet": "^8.0.0",
"inserturlparams": "^2.0.5",
"jet-env": "^1.1.4",
"jet-logger": "^2.0.1",
"jet-paths": "^1.1.0",
"jet-schema": "^1.4.3",
"jet-validators": "^1.0.14",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@swc/core": "^1.10.1",
"@types/cookie-parser": "^1.4.8",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/find": "^0.2.4",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "^5.1.5",
"@types/jsonfile": "^6.1.4",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"eslint": "^9.17.0",
"eslint-plugin-n": "^17.15.1",
"find": "^0.3.0",
"fs-extra": "^11.2.0",
"jasmine": "^5.5.0",
"jiti": "^2.4.2",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}