-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1006 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1006 Bytes
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
{
"name": "ic-ecom",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"start:prod": "npm run build && npm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/multer": "^1.4.11",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.4.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.15",
"morgan": "^1.10.0",
"nodemon": "^3.1.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}