-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "workgo-node-backend",
"version": "1.0.0",
"main": "src/app.ts",
"module": "",
"engines": {
"node": "22.1.0"
},
"type": "module",
"scripts": {
"dev": "NODE_ENV=development docker-compose up",
"docker:dev": "NODE_ENV=development nodemon --watch './src/**/*' --ext 'ts' --ignore './src/shared/generated/**/*' --exec 'npm run compile'",
"build": "NODE_ENV=development docker-compose build --no-cache",
"compile": "tsx src/app.ts",
"sync": "COMPILE_OPENAPI_SPECS=true NODE_ENV=development npm run compile && tsx scripts/sync-shared.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^22.7.4",
"@types/pg": "^8.11.10",
"concurrently": "^9.0.1",
"fastify-cli": "^7.0.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"tsx": "^4.19.1",
"zod-to-ts": "^1.2.0"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.0.1",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@node-rs/argon2": "^2.0.0",
"@prisma/client": "^5.20.0",
"@t3-oss/env-core": "^0.11.1",
"arctic": "^1.9.2",
"dayjs": "^1.11.13",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"lucia": "^3.2.0",
"ofetch": "^1.4.1",
"openapi-typescript": "^7.4.1",
"oslo": "^1.2.1",
"zod": "^3.23.8"
}
}