-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.57 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
{
"name": "ds-agent",
"version": "1.2.1",
"description": "Service responsible for data synchronization of FitBit platform with HANIoT 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/haniot/ds-agent.git"
},
"keywords": [
"microservice",
"sync",
"data-sync",
"fitbit",
"oauth2"
],
"author": "NUTES/UEPB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/haniot/ds-agent.git/issues"
},
"homepage": "https://github.com/haniot/ds-agent.git#readme",
"nyc": {
"include": [
"**/*.tsx",
"**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/*",
"config/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"amqp-client-node": "^1.0.11",
"body-parser": "^1.20.1",
"bull": "^4.10.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fitbit-node": "^2.2.0",
"helmet": "^3.23.3",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.7.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"query-strings-parser": "^2.1.12-lts",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/bull": "^4.10.0",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.14",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.3",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.7",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sinon": "^14.0.2",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
}
}