-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ecom-backend-freelance",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"start": "node dist/index.js",
"prestart": "npm run build",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"migration": "npx prisma migrate dev --name migration-name"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@aws-sdk/client-s3": "^3.427.0",
"@aws-sdk/s3-request-presigner": "^3.427.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-rate-limit": "^6.0.0",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.8",
"@types/node": "^20.8.3",
"@types/nodemailer": "^6.4.11",
"prisma": "^5.4.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"@types/stripe": "^8.0.417",
"@types/uuid": "^9.0.7",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.27",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.6",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"stripe": "^14.7.0",
"ts-dotenv": "^0.9.1",
"ts-node": "^10.9.1",
"uuid": "^9.0.1",
"xss-clean": "^0.1.4",
"zod": "^3.22.4"
}
}