-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.26 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
52
53
54
55
56
57
{
"name": "express-typescript",
"version": "1.0.0",
"description": "Backend untuk CMS Dasboard dan Blogpage",
"licenses": [
{
"type": "UNLICENSED"
}
],
"main": "index.js",
"scripts": {
"dev": "vercel dev",
"build": "tsc",
"start": "tsc && nodemon dist/index.js",
"postinstall": "prisma generate --schema src/models"
},
"keywords": [],
"author": "",
"license": "ISC",
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"bcrypt",
"prisma",
"@prisma/client",
"@prisma/engines"
]
},
"dependencies": {
"@prisma/client": "6.1.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"multer": "1.4.5-lts.1",
"nanoid": "^5.0.8",
"prisma": "^6.1.0",
"sharp": "^0.33.5",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/multer": "^1.4.12",
"@types/passport": "^1.0.17",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}