generated from GauravWalia19/mernboilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "hacktoberfestchecker",
"version": "3.0.0",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"description": "This is the project for the programmers to check whether they are qualified for hacktoberfest or not",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test:server": "mocha --exit",
"test:client": "cd client && yarn run test:nowatch",
"test": "concurrently -n 'server,client' -c 'yellow,blue' \"yarn run test:server\" \"yarn run test:client\"",
"dev:server": "nodemon server.js",
"dev:client": "cd client && yarn start",
"dev:mern": "concurrently -n 'server,client' -c 'yellow,blue' \"yarn run dev:server\" \"yarn run dev:client\"",
"heroku-postbuild": "cd client && yarn install && yarn run build"
},
"author": "Gaurav Walia",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"mongoose": "^6.6.2"
},
"devDependencies": {
"concurrently": "^7.4.0",
"dotenv": "^16.0.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.2.4"
}
}