forked from GauravWalia19/mernboilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 859 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.2",
"engines": {
"node": "14.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": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"mocha": "^9.0.2",
"mongoose": "^5.13.3"
},
"devDependencies": {
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"nodemon": "^2.0.12",
"supertest": "^6.1.4"
}
}