This repository has been archived by the owner on Nov 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "historization",
"version": "1.12.12",
"description": "A historization service responsible for persisting info",
"author": {
"name": "Thomas Kosiewski"
},
"engines": {
"node": ">=12.9.0"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"private": true,
"files": [
"build"
],
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/Fortify-Labs/Fortify.git"
},
"bugs": {
"url": "https://github.com/Fortify-Labs/Fortify/issues"
},
"keywords": [],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -b",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check",
"sentry": "cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases new $npm_package_version && cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases files $npm_package_version upload-sourcemaps --rewrite ./build && cross-env SENTRY_PROJECT=$npm_package_name sentry-cli releases finalize $npm_package_version",
"start": "cross-env TS_NODE_PROJECT=./ NODE_OPTIONS=--trace-warnings node -r tsconfig-paths/register build/index.js",
"start:ts": "cross-env DEBUG=app::* NODE_OPTIONS=--trace-warnings ts-node -r tsconfig-paths/register --files src/index.ts",
"sync-dotenv": "sync-dotenv",
"dev": "DEBUG=app:* nodemon"
},
"devDependencies": {
"@sentry/cli": "^1.63.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.8",
"@types/redis": "^2.8.28",
"gts": "^3.1.0",
"nodemon": "^2.0.7",
"sync-dotenv": "^2.6.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.10.0",
"@sentry/node": "^6.2.0",
"bignumber.js": "^9.0.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"inversify": "^5.0.5",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^1.15.0",
"node-fetch": "^2.6.1",
"prom-client": "^13.1.0",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0",
"winston": "^3.3.3"
}
}