-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "exercise-tracker-microservice",
"version": "1.0.0",
"description": "Exercise Microservice using Express and Mongo",
"main": "server.js",
"scripts": {
"start": "nodemon ./server.js --exec babel-node -e js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fendermaniac/exercise-tracker-microservice.git"
},
"author": "Joe LoPresti",
"license": "ISC",
"bugs": {
"url": "https://github.com/fendermaniac/exercise-tracker-microservice/issues"
},
"homepage": "https://github.com/fendermaniac/exercise-tracker-microservice#readme",
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongoose": "^5.4.6",
"shortid": "^2.2.14"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"nodemon": "^1.18.9"
}
}