-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "dogcollar",
"version": "1.0.0",
"description": "A NodeJS Micro Service for Consuming and Saving Dog Collar Data",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start": "nodemon index.js",
"test": "nyc mocha test/*Test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RoryConnolly/DogCollarService.git"
},
"author": "Rory Connolly",
"license": "MIT",
"bugs": {
"url": "https://github.com/RoryConnolly/DogCollarService/issues"
},
"homepage": "https://github.com/RoryConnolly/DogCollarService#readme",
"dependencies": {
"aws-sdk": "^2.521.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.6.11",
"nodemon": "^1.19.2",
"swagger-ui-express": "^4.0.7"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "production",
"PORT": 3000
}
}
}