-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.84 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
{
"name": "vektor-api",
"version": "0.0.1",
"description": "",
"main": "./src/main.ts",
"type": "module",
"scripts": {
"dev:once": "tsx ./src/main.ts",
"dev": "tsx watch ./src/main.ts",
"build": "tsc --project ./tsconfig.json && tsc-alias --project ./tsconfig.json --resolve-full-paths",
"start": "node ./build/src/main.js",
"prod": "pnpm build && pnpm start",
"test": "tsc --noEmit && node --import tsx --test --test-force-exit ./src/test/*.ts",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check --write",
"db:generate": "drizzle-kit generate --config=db/config/drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config=db/config/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=db/config/drizzle.config.ts",
"db:seed": "tsx ./db/seeding/seeding.ts",
"docs:generate": "tsx ./openapi/generate-document.ts"
},
"license": "ISC",
"dependencies": {
"ajv": "^8.17.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.33.0",
"drizzle-seed": "^0.3.1",
"drizzle-zod": "^0.5.1",
"express": "^5.1.0",
"express-zod-safe": "^1.3.3",
"pg": "^8.14.1",
"swagger-jsdoc": "^6.2.8",
"validator": "^13.15.0",
"zod": "^3.24.2",
"zod-openapi": "^3.3.0",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"@types/pg": "^8.11.11",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/validator": "^13.12.3",
"drizzle-kit": "^0.24.2",
"supertest": "^7.1.0",
"tsc-alias": "^1.8.13",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"yaml": "^2.7.1"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
}