-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
{
"name": "heyka-backend",
"version": "0.0.1",
"description": "An awesome API for Heyka",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"dev:node": "NODE_ENV=development node index.js",
"lint": "eslint ./",
"test": "yarn lab --verbose --leaks -m 3000 --coverage --coverage-exclude config/index.js --coverage-exclude config/manifest.js --coverage-exclude lib/.hc.js --coverage-exclude lib/index.js",
"test:integration": "yarn lab --verbose --leaks test/index.test.js test/socket.test.js",
"test:unit": "yarn lab --verbose --leaks test/unit/*.js",
"check": "yarn run lint && yarn run test",
"migrate": "node-pg-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmtt-ru/heyka-backend.git"
},
"author": "cmtt-ru",
"license": "proprietary",
"bugs": {
"url": "https://github.com/cmtt-ru/heyka-backend/issues"
},
"homepage": "https://github.com/cmtt-ru/heyka-backend#readme",
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/glue": "^6.2.0",
"@hapi/hapi": "^18.4.0",
"@hapi/inert": "^5.2.2",
"@hapi/vision": "^5.5.4",
"@mailchimp/mailchimp_marketing": "^3.0.36",
"@slack/web-api": "^5.7.0",
"aws-sdk": "^2.827.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"bell": "^10.0.0",
"busboy": "^0.3.1",
"cloudflare": "^2.7.0",
"create-hmac": "^1.1.7",
"crypto-promise": "^2.1.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"email-templates": "^7.1.0",
"form-data": "^3.0.0",
"hapi-auth-bearer-token": "^6.2.1",
"hapi-emitter": "^4.0.0",
"hapi-pg-promise": "ekorolev/hapi-pg-promise#pg-promise",
"hapi-redis2": "^2.1.3",
"hapi-swagger": "^11.1.0",
"haute-couture": "^3.4.0",
"i18n": "^0.13.3",
"ioredis": "^4.16.2",
"joi": "^17.2.0",
"joi-md-doc": "^0.1.0",
"json-stream": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"kubernetes-client": "^9.0.0",
"log-timestamp": "^0.3.0",
"mime-types": "^2.1.27",
"node-pg-migrate": "^3.23.3",
"pg-promise": "^10.3.1",
"redlock": "^4.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"s3fs": "^2.5.0",
"schmervice": "^1.3.0",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.2.0",
"toys": "^2.2.3",
"unique-names-generator": "^4.3.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@hapi/code": "^7.0.0",
"@hapi/lab": "^21.0.0",
"eslint": "^6.6.0",
"mockdate": "^3.0.2",
"mockery": "^2.1.0",
"nodemon": "^2.0.1",
"sinon": "^7.5.0"
}
}