-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "lyra-api",
"version": "1.0.0",
"description": "Lyra API",
"license": "MIT",
"keywords": [
"lyra-finance",
"api"
],
"scripts": {
"build-ts": "tsc",
"build": "yarn build-ts && yarn lint-fix",
"clean-svge": "rimraf coverage",
"clean-build": "rimraf build",
"clean-mdls": "lerna clean --yes && rimraf node_modules yarn.lock",
"debug": "yarn build & yarn watch-debug",
"dev": "tsnd --respawn --transpile-only src/server.ts",
"serve-debug": "tsnd --debug build/server.js",
"serve": "node dist/server.js",
"start": "node build/server.js",
"lint:ts": "eslint --ext .js,.ts .",
"lint:ts:fix": "yarn lint:ts --fix",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yarn watch-ts\" \"yarn serve-debug\"",
"watch-ts": "tsc -w"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@lyrafinance/lyra-js": "^0.0.23",
"@types/errorhandler": "^1.5.0",
"compression": "^1.7.4",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"errorhandler": "^1.5.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql-request": "^5.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^18.2.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.16",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/node-schedule": "^2.1.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"yarn-upgrade-all": "^0.7.2"
}
}