-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "@terra-money/price-server",
"version": "2.0.3",
"main": "src/main.ts",
"license": "Apache-2.0",
"scripts": {
"start": "node --stack_size=4096 --max-old-space-size=4096 -r ts-node/register/transpile-only -r tsconfig-paths/register src/main.ts",
"test": "jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"dependencies": {
"@opentelemetry/api": "^1.0.2",
"@opentelemetry/exporter-prometheus": "^0.23.0",
"@opentelemetry/metrics": "^0.23.0",
"@polka/send-type": "^0.5.2",
"@sentry/node": "^6.0.2",
"bignumber.js": "^9.0.1",
"bluebird": "^3.7.2",
"config": "^3.3.3",
"csv-writer": "^1.6.0",
"date-fns": "^2.16.1",
"form-data": "^4.0.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.7",
"pako": "^2.0.3",
"polka": "^0.5.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^27.1.4"
},
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"./src/**/*.{json,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"parser": "typescript",
"printWidth": 100,
"singleQuote": true,
"semi": false
}
}