-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 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
{
"name": "codelight-server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc --noEmit",
"dev": "tsx --env-file=.env.dev ./sources/main.ts",
"start": "tsx ./sources/main.ts",
"test": "vitest run",
"migrate": "dotenv -e .env.dev -- prisma migrate dev",
"generate": "prisma generate",
"postinstall": "prisma generate",
"db": "docker run -d -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=codelight -v $(pwd)/.pgdata:/var/lib/postgresql/data -p 5432:5432 postgres"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@prisma/client": "^6.11.1",
"fastify": "^5.2.0",
"fastify-type-provider-zod": "^4.0.2",
"jose": "^6.2.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^6.11.1",
"socket.io": "^4.8.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uuid": "^9.0.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.12.3",
"dotenv-cli": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.0"
}
}