-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.35 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
{
"name": "tokensuite-frontend-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --write .",
"svgr": "npx @svgr/cli -d src/components/atoms/icons --ignore-existing --icon --typescript public/icons",
"prepare": "husky install",
"pre-commit": "lint-staged",
"graphql:codegen": "npx get-graphql-schema https://dev-soccer-backend-ocyzd.ondigitalocean.app/graphql > schema.graphql && npx gqlg --schemaFilePath schema.graphql --destDirPath ./src/graphql --depthLimit 5 && graphql-codegen --config codegen.yml",
"typechain": "typechain --target ethers-v5 --out-dir ./types/config/abis './src/config/abis/*.json'"
},
"dependencies": {
"@graphql-codegen/typescript-react-query": "^3.5.5",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"ethers": "^5.6.2",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"immer": "^9.0.15",
"next": "12.1.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.34.16",
"react-toastify": "^9.0.5",
"sass": "^1.49.9",
"zustand": "^3.7.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@graphql-codegen/cli": "2.3.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.4.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@svgr/cli": "^6.1.2",
"@typechain/ethers-v5": "^8.0.5",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-loader": "^8.2.3",
"eslint": "^8.5.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-prepush": "^2.2.0",
"lint-staged": "11.2.4",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"lint-prepush": {
"base": "dev",
"tasks": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
}
}
}