-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "@subql/network-tools",
"description": "Client sdk for Subquery Network",
"scripts": {
"build": "yarn workspaces foreach -pt run build",
"lint": "eslint . --ext .ts,.tsx",
"postinstall": "husky install",
"test": "jest --passWithNoTests --detectOpenHandles --testTimeout=160000"
},
"author": "SubQuery Pte Limited",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@actions/core": "^1.9.1",
"@apollo/client": "^3.8.8",
"@metamask/eth-sig-util": "^4.0.1",
"@octokit/request": "^5.6.3",
"@subql/contract-sdk": "1.0.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^28.1.6",
"@types/react": "^18.2.28",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"axios": "^0.27.2",
"ctix": "^1.5.4",
"dotenv": "^16.0.3",
"eslint": "^8.17.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.0.0",
"flag": "^5.0.1",
"graphql": "^16.5.0",
"graphql-language-service-server": "^2.8.9",
"husky": "^8.0.1",
"ipfs-http-client": "^53.0.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-axios": "^4.7.2",
"jwt-decode": "^3.1.2",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.1"
},
"workspaces": [
"packages/network-config",
"packages/network-query",
"packages/apollo-links",
"packages/network-clients",
"packages/react-hooks",
"packages/eth-provider",
"packages/network-support"
],
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"packageManager": "[email protected]"
}