-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 935 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
{
"name": "d",
"version": "1.0.0",
"description": "A dynamic workout tracker that uses a Mongo database with a Mongoose schema and handles routes with Express. The app tracks the name, type, weight, sets, reps, distance and duration of exercise.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "nodemon server.js",
"seed": "node seeders/seed.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.9.26",
"morgan": "^1.10.0",
"path": "^0.12.7"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/corielynch/workout_tracker.git"
},
"bugs": {
"url": "https://github.com/corielynch/workout_tracker/issues"
},
"homepage": "https://github.com/corielynch/workout_tracker#readme"
}