-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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": "API server for ecommerce application",
"main": "server.js",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\"",
"build": "babel src --out-dir dist",
"start": "npm install && npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/palak1101/ECOMMERCE-BACKEND.git"
},
"author": "Palak Tiwari",
"license": "MIT",
"bugs": {
"url": "https://github.com/palak1101/ECOMMERCE-BACKEND/issues"
},
"homepage": "https://github.com/palak1101/ECOMMERCE-BACKEND#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.8",
"razorpay": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"nodemon": "^2.0.15"
}
}