-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "data-sync-agent",
"version": "1.6.1",
"description": "Service responsible for data synchronization of FitBit platform with OCARIoT platform.",
"main": "dist/server.js",
"scripts": {
"build": "gulp build",
"build:doc": "typedoc --options typedoc.json",
"start": "node dist/server.js",
"start:dev": "gulp dev",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "nyc --clean --reporter=text-summary mocha test/**/*.spec.ts",
"test:unit": "nyc --clean --all --reporter=text-summary mocha test/unit/**/*.spec.ts",
"test:integration": "nyc --clean --all --reporter=text-summary mocha test/integration/**/*.spec.ts",
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ocariot/data-sync-agent.git"
},
"keywords": [
"microservice",
"sync",
"data-sync",
"fitbit",
"oauth2"
],
"author": "NUTES/UEPB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ocariot/data-sync-agent/issues"
},
"homepage": "https://github.com/ocariot/data-sync-agent#readme",
"nyc": {
"include": [
"**/*.tsx",
"**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/*",
"config/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"@ocariot/rabbitmq-client-node": "^1.6.2",
"body-parser": "^1.19.0",
"bull": "^3.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fitbit-node": "^2.2.0",
"helmet": "^3.23.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"mongoose": "5.8.2",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"query-strings-parser": "^2.1.5",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.4",
"winston": "^3.3.2",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/bull": "^3.14.0",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/helmet": "^0.0.47",
"@types/mocha": "^8.0.3",
"@types/mongoose": "^5.7.24",
"@types/morgan": "^1.9.1",
"@types/swagger-ui-express": "^4.1.2",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sinon": "^7.5.0",
"sinon-mongoose": "^2.3.0",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
}
}