forked from pancakeswap/pancake-info-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "pancake-info-api",
"version": "1.0.0",
"description": "Serverless API implementation for PancakeSwap on-chain data query.",
"repository": "[email protected]:pancakeswap/pancake-info-api.git",
"author": "PancakeSwap",
"license": "MIT",
"scripts": {
"format:check": "prettier --check '*/**/*.{js,ts}'",
"format:write": "prettier --write '*/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts}'",
"codegen": "graphql-codegen --config utils/apollo/codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "yarn format:write",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@apollo/client": "^3.3.13",
"@ethersproject/address": "^5.1.0",
"bignumber.js": "^9.0.1",
"cross-fetch": "^3.1.3",
"graphql-tag": "^2.11.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@graphql-codegen/cli": "^1.21.3",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-operations": "^1.17.11",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vercel/node": "^1.9.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"graphql": "^15.5.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}