generated from ChaiyapatOam/node-ts-boiler-prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "node-ts-boilder-prisma",
"version": "1.0.0",
"author": "ChaiyapatOam",
"description": "starter boilderplate for develop Node.js Express with TypeScript and Prisma",
"main": "dist/server.js",
"scripts": {
"build": "npx tsc && npx tsc-alias",
"start": "node ./dist/server.js",
"dev": "npx ts-node-dev -r tsconfig-paths/register src/server.ts"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.4.2",
"@types/uuid": "^9.0.7",
"prisma": "^5.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"helmet": "^7.0.0",
"uuid": "^9.0.1",
"zod": "^3.22.2"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.17.3"
}
}