-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "frusta",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "vitest run",
"dev": "node --watch --import tsx src/server.ts",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"bench:k6:upload": "k6 run benchmarks/k6/upload-flow.js",
"bench:k6:upload:local": "BASE_URL=http://localhost:3000 VUS=5 DURATION=30s k6 run benchmarks/k6/upload-flow.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^25.3.3",
"@types/pg": "^8.18.0",
"@types/supertest": "^7.2.0",
"prisma": "^7.4.2",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.4.2",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"@types/express": "^5.0.6",
"@types/k6": "^1.6.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pg": "^8.19.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}