forked from Uniswap/api-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "@uniswap/api",
"license": "GPL-3.0-or-later",
"engines": {
"node": "12.x"
},
"dependencies": {
"@ethersproject/address": "^5.0.0-beta.125",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link-http": "^1.5.15",
"bignumber.js": "^9.0.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.10.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "1.15.4",
"@graphql-codegen/typescript": "1.15.4",
"@graphql-codegen/typescript-operations": "^1.15.4",
"@types/aws-lambda": "^8.10.59",
"@types/node-fetch": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^6.0.0",
"prettier": "^1.18.2",
"serverless": "^1.75.1",
"serverless-api-gateway-caching": "^1.4.1",
"serverless-content-encoding": "^1.1.0",
"serverless-plugin-typescript": "^1.1.9",
"typescript": "^3.9.7"
},
"scripts": {
"lint:base": "yarn eslint ./src/**/*.ts",
"format:base": "yarn prettier ./src/**/*.ts",
"fix:lint": "yarn lint:base --fix",
"fix:format": "yarn format:base --write",
"fix:all": "yarn fix:lint && yarn fix:format",
"check:lint": "yarn lint:base",
"check:format": "yarn format:base --check",
"check:all": "yarn check:lint && yarn check:format",
"generate:v2": "graphql-codegen --config src/v2/apollo/codegen.yml",
"build": "sls package"
}
}