-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "api",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"start": "node dist/index.js",
"dev": "tsup --watch --onSuccess \"node dist/index.cjs\"",
"build": "tsup",
"check-types": "tsc --noEmit",
"lint": "eslint src/ --max-warnings 0",
"test": "jest --detectOpenHandles"
},
"jest": {
"preset": "@repo/jest-presets/node"
},
"dependencies": {
"@repo/logger": "workspace:*",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "4.21.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/jest-presets": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^22.15.3",
"@types/supertest": "^6.0.2",
"eslint": "^9.31.0",
"jest": "^29.7.0",
"supertest": "^7.1.0",
"tsup": "^8.5.0",
"typescript": "5.8.2"
}
}