-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
43
44
45
46
47
48
49
50
{
"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",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "biome format --write ./src ./db",
"lint": "biome lint --write ./src ./db",
"check": "biome check --write ./src ./db",
"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",
"docs:generate": "tsx ./src/openapi/generateDocument.ts"
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"express": "^4.21.1",
"pg": "^8.13.0",
"pg-protocol": "^1.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.23.8",
"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.7.8",
"@types/pg": "^8.11.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"drizzle-kit": "^0.24.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"yaml": "^2.6.0"
}
}