-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
102 lines (102 loc) · 2.94 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
101
102
{
"name": "gladys-gateway-server",
"version": "1.0.0",
"description": "An End-to-End Encrypted Gateway to access Gladys from the internet",
"main": "index.js",
"scripts": {
"test": "mocha ./test/bootstrap.test.js ./test/**/*.test.js --exit",
"coverage": "nyc --reporter=lcov npm test",
"eslint": "eslint core test index.js",
"eslint-fix": "eslint --fix core test index.js",
"prettier": "prettier --write core test index.js",
"prettier-check": "prettier --check core test index.js",
"start": "nodemon index.js",
"start-worker": "nodemon worker.js",
"apidoc": "apidoc -i core/ -o apidoc/",
"setup-db-dev": "db-migrate up -e dev",
"setup-db-test": "db-migrate up -e test",
"start-email-preview": "node ./core/common/dev-email-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gladysassistant/gladys-gateway.git"
},
"keywords": [
"gladys",
"gateway",
"end-to-end",
"encryption",
"nodejs",
"home",
"automation"
],
"author": "Pierre-Gilles Leymarie",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gladysassistant/gladys-gateway/issues"
},
"apidoc": {
"title": "Gladys Gateway",
"name": "Gladys Gateway"
},
"homepage": "https://github.com/gladysassistant/gladys-gateway#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"pify": "^5.0.0",
"prettier": "^2.3.2",
"should": "^13.2.3",
"socket.io-client": "^4.8.0",
"supertest": "^3.3.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/lib-storage": "^3.332.0",
"@aws-sdk/s3-request-presigner": "^3.332.0",
"@googleapis/homegraph": "^4.0.0",
"@sentry/node": "^5.22.3",
"@socket.io/redis-adapter": "^8.3.0",
"async-retry": "^1.3.3",
"aws-sdk": "^2.1129.0",
"axios": "^1.1.3",
"axios-logger": "^2.6.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"bottleneck": "^2.19.5",
"bullmq": "^3.2.2",
"clone": "^2.1.2",
"dayjs": "^1.11.6",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^6.2.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"geoip-lite": "^1.4.0",
"get-value": "^3.0.1",
"joi": "^13.6.0",
"jsonwebtoken": "^8.3.0",
"massive": "^6.9.0",
"node-telegram-bot-api": "^0.53.0",
"nodemailer": "^6.7.5",
"object-sizeof": "^1.4.0",
"omit-deep": "^0.3.0",
"querystring": "^0.2.0",
"rate-limit-redis": "^3.0.1",
"rate-limiter-flexible": "^2.4.1",
"redis": "^4.7.0",
"secure-remote-password": "^0.3.1",
"socket.io": "^4.8.0",
"speakeasy": "^2.0.0",
"stripe": "^8.137.0",
"tracer": "^0.9.1",
"uuid": "^3.3.2"
}
}