-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 970 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
{
"name": "carsandbids",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server/server.js",
"server": "nodemon server/server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node server/seeder.js",
"data:destroy": "node server/seeder.js -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AhadAli01/cars-and-bids.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AhadAli01/cars-and-bids/issues"
},
"homepage": "https://github.com/AhadAli01/cars-and-bids#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"mongoose": "^6.0.12"
},
"devDependencies": {
"concurrently": "^6.3.0",
"nodemon": "^2.0.14"
}
}