-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1020 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
{
"name": "blazecart",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder",
"data:destroy": "node backend/seeder -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayushblaze/BlazeCart-MERN.git"
},
"author": "Ayush Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayushblaze/BlazeCart-MERN/issues"
},
"homepage": "https://github.com/ayushblaze/BlazeCart-MERN#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^5.10.6"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.0"
}
}