-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 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
40
41
42
43
44
45
46
47
{
"name": "node-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development ts-node-dev --respawn -r tsconfig-paths/register src/server.ts",
"build": "tsc -p .",
"start": "NODE_ENV=production node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.1",
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/env": "^5.0.2",
"@fastify/swagger": "^9.5.0",
"@fastify/swagger-ui": "^5.2.2",
"@fastify/type-provider-typebox": "^5.1.0",
"@prisma/client": "^6.6.0",
"@sinclair/typebox": "^0.34.33",
"bcryptjs": "^3.0.2",
"dotenv": "^16.5.0",
"fastify": "^5.3.0",
"fastify-plugin": "^5.0.1",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"prisma": "^6.6.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"_moduleAliases": {
"@services": "dist/services",
"@interfaces": "dist/types",
"@schemas": "dist/schemas",
"@libs": "dist/libs",
"@plugins": "dist/plugins",
"@routes": "dist/routes"
}
}