-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "product-service",
"version": "0.1.0",
"description": "this is the product service of dashter built with node, express, mongoose schema validation and use mongodb as a database",
"main": "index.js",
"scripts": {
"dev": "nodemon api/index.js",
"start": "node api/index.js",
"production": "NODE_ENV=production nodemon api/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"data:import": "node script/seed.js",
"product": "node script/product.js"
},
"author": "Udana Isiwari",
"license": "ISC",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.3",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.26.3",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^6.1.0",
"helmet": "^5.0.2",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.8",
"mongoose-sequence": "^5.3.1",
"nodemailer": "^6.7.2",
"socket.io": "^4.7.2",
"stripe": "^9.14.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}