forked from funkycadet/express-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "express-typescript-template",
"version": "0.1.0",
"description": "A boilerplate for Express projects written in TypeScript",
"main": "server.ts",
"author": "Eric Alaribe",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"start:dev": "tsc-watch --onSuccess \"ts-node ./src/server.ts\"",
"build": "tsc",
"migration:dev": "prisma migrate dev",
"migration:run": "prisma migrate deploy",
"migration:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:init": "npx prisma init"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^20.12.7",
"argon2": "^0.40.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^6.0.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"prisma": "^5.12.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}