-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 926 Bytes
/
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": "ecommerce-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon dist/app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^22.4.0",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"node-cache": "^5.1.2",
"nodemon": "^3.1.4",
"stripe": "^16.8.0",
"typescript": "^5.5.4",
"uuid": "^10.0.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/cors": "^2.8.17"
}
}