-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
84 lines (84 loc) · 2.37 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": "api",
"version": "1.0.0",
"description": "Node.js API for the single-cell pipeline.",
"main": "index.js",
"scripts": {
"test": "jest --silent --coverage --testTimeout=100000",
"test:loud": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --silent",
"coverage": "jest --coverage --silent",
"dev": "nodemon --max-old-space-size=8192 src/app.js",
"start": "node --max-old-space-size=8192 src/app.js",
"lint": "eslint ./src",
"detect-secrets": "pip3 install detect-secrets && git diff --staged --name-only | xargs detect-secrets-hook --baseline .secrets.baseline"
},
"pre-commit": [
"lint",
"detect-secrets"
],
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.12.3",
"async-lock": "^1.3.0",
"aws-sdk": "^2.1474.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-openapi-validator": "^4.10.8",
"github-download-directory": "^2.0.0",
"ioredis": "^4.17.3",
"ipaddr.js": "^2.0.1",
"js-yaml": "^3.13.1",
"json-merger": "^1.1.7",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.5",
"knex": "^2.4.0",
"lodash": "^4.17.21",
"log-timestamp": "^0.3.0",
"lru-cache": "^5.1.1",
"micromatch": "^4.0.2",
"node-cleanup": "^2.1.2",
"node-fetch": "^2.6.7",
"node-jq": "^2.3.5",
"object-hash": "^2.0.3",
"pg": "^8.7.3",
"promise.any": "^2.0.2",
"sns-validator": "^0.3.4",
"socket.io": "^4.7.2",
"socket.io-redis": "^6.0.1",
"swagger-client": "^3.18.4",
"swagger-model-validator": "^3.0.18",
"uuid": "^8.3.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"aws-sdk-mock": "^5.1.0",
"babel-eslint": "^9.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"ioredis-mock": "^4.21.1",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.20",
"pre-commit": "^1.2.2",
"socket.io-client": "^2.3.0",
"socket.io-mock": "^1.3.1",
"supertest": "^4.0.2"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**"
],
"modulePathIgnorePatterns": [
"<rootDir>/src/.*/__mocks__"
]
}
}