-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.82 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
58
59
60
61
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "husky",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "Dipto Karmaker",
"license": "ISC",
"dependencies": {
"@prisma/client": "6.15.0",
"@prisma/extension-accelerate": "^2.0.2",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"formidable": "^3.5.4",
"helmet": "^8.1.0",
"http-status": "1.7.4",
"jsonwebtoken": "^9.0.2",
"stripe": "^18.5.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.17.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"concurrently": "^9.2.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^9.1.2",
"globals": "^15.15.0",
"husky": "^9.1.7",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"prisma": "^6.15.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"packageManager": "pnpm@10.3.0+sha512.ee592eda8815a8a293c206bb0917c4bb0ff274c50def7cbc17be05ec641fc2d1b02490ce660061356bd0d126a4d7eb2ec8830e6959fb8a447571c631d5a2442d"
}