-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "exercise_tracker_mern",
"version": "1.0.0",
"description": "exercise tracker app with mern stack",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.10.7",
"nodemon": "^2.0.4",
"validator": "^13.1.17"
},
"devDependencies": {
"jshint": "^2.12.0"
},
"scripts": {
"test": "echo \"no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node server.js"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prati-bha/Exercise_Tracker_MERN.git"
},
"keywords": [
"mern",
"exercise"
],
"author": "pratibha_mahima",
"license": "ISC",
"bugs": {
"url": "https://github.com/prati-bha/Exercise_Tracker_MERN/issues"
},
"homepage": "https://github.com/prati-bha/Exercise_Tracker_MERN#readme"
}