-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
41
42
43
44
{
"name": "ecom",
"version": "1.0.0",
"description": "MERN eCom app",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm install && cd frontend && npm install && npm run build",
"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/BrendanMeintjes/musicZone.git"
},
"author": "Brendan Meintjes",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrendanMeintjes/musicZone/issues"
},
"homepage": "https://github.com/BrendanMeintjes/musicZone#readme",
"dependencies": {
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.34.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"react-paypal-button-v2": "^2.6.3"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}