forked from Fortify-Labs/Fortify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"name": "shared",
"version": "1.24.0",
"description": "Shared library for fortify micro services",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"license": "AGPL-3.0-or-later",
"private": "true",
"files": [
"build/src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check",
"typeorm": "ts-node ./node_modules/.bin/typeorm -f ./ormconfig.ts"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/ioredis": "^4.22.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"dotenv": "^8.2.0",
"gts": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@godaddy/terminus": "^4.6.0",
"@influxdata/influxdb-client": "^1.10.0",
"@influxdata/influxdb-client-apis": "^1.10.0",
"@sentry/integrations": "^6.2.1",
"@sentry/node": "^6.2.1",
"bignumber.js": "^9.0.1",
"express": "^4.17.1",
"inversify": "^5.0.5",
"ioredis": "^4.23.0",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^1.15.0",
"node-fetch": "^2.6.1",
"node-vault": "^0.9.21",
"pg": "^8.5.1",
"prom-client": "^13.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31",
"winston": "^3.3.3"
}
}