-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.24 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
{
"version": "1.0.0",
"name": "aave-api",
"description": "Aave API",
"keywords": [],
"private": false,
"license": "BSD-3-Clause",
"main": "index.ts",
"scripts": {
"start": "npm i && nodemon",
"prod": "ts-node ./src/index.ts",
"sys:start-cron": "supercronic ./src/cron-jobs/crontab",
"lint": "prettier --write .",
"dev:codegen": "graphql-codegen --config graphql-codegen.yml",
"cron:update-reserveHistory": "ts-node ./src/cron-jobs/reserveHistory-updates"
},
"repository": {
"type": "git",
"url": "[email protected]:aave-tech/api-v2/aave-api.git"
},
"dependencies": {
"@aave/protocol-js": "4.0.1",
"bignumber.js": "^9.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dayjs": "^1.10.3",
"env-cmd": "^10.1.0",
"ethers": "^5.4.7",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"helmet": "^4.3.1",
"inversify": "^5.0.5",
"mongoose": "^5.11.13",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-graphql-request": "^3.0.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.3",
"@types/mongodb": "^3.6.3",
"@types/morgan": "^1.9.2",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.8",
"jest": "^26.1.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,yml}": [
"prettier --write",
"git add"
]
}
}