-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
33 lines (33 loc) · 954 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
{
"name": "mernboilerplate",
"version": "1.0.5",
"engines": {
"node": "18.x",
"yarn": "1.x"
},
"description": "This is a boilerplate repo for creating new mern stack apps",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"dev": "nodemon server.js",
"client": "cd client && yarn start",
"mern": "concurrently -n 'server,client' -c 'yellow,blue' \"yarn run dev\" \"yarn run client\"",
"heroku-postbuild": "cd client && yarn install && yarn run build"
},
"author": "Gaurav Walia",
"license": "ISC",
"dependencies": {
"axios": "^1.3.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"mocha": "^10.2.0",
"mongoose": "^6.9.1"
},
"devDependencies": {
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}