-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 945 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
40
41
{
"name": "e-commerce",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node ./dist/server.js",
"build": "tsc",
"dev": "ts-node-dev src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"e-commerce",
"api",
"server"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.6",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.2",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"response-manager": "^1.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}