-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "anubis-db",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "yarn tsx src/start.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/express": "^5.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.8",
"body-parser": "1.20.3",
"compression": "^1.8.0",
"dotenv": "^16.4.7",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"helmet": "8.0.0",
"is-valid-domain": "^0.1.6",
"jade": "1.11.0",
"lodash-es": "^4.17.21",
"mongoose": "8.11.0",
"morgan": "1.10.0",
"prettier": "^3.5.3",
"rotating-file-stream": "^3.2.6",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/compat": "^1.2.7",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript-eslint": "^8.25.0"
}
}