-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.41 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@swingby-protocol/explorer-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "echo 'No tests here so far'",
"cypress": "TZ=Etc/UTC cypress",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,mdx,html}'",
"generate": "graphql-codegen --config codegen.yml",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "yarn check-format && yarn check-lint && yarn check-types && yarn build",
"postinstall": "patch-package",
"prepare": "husky install"
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"proseWrap": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "yarn lint --fix"
},
"dependencies": {
"@apollo/client": "^3.8.3",
"@moxy/next-router-scroll": "^2.2.0",
"@react-hook/copy": "^2.0.1",
"@swingby-protocol/header": "^2.3.1",
"@swingby-protocol/ip-check": "^2.1.0",
"@swingby-protocol/pulsar": "^3.15.3",
"@swingby-protocol/sdk": "^1.2.0-alpha.12",
"@swingby-protocol/widget": "^1.1.1",
"@walletconnect/ethereum-provider": "^2.10.0",
"@walletconnect/modal": "^2.6.1",
"apr-tools": "^0.1.4",
"bignumber.js": "^9.1.2",
"blockies-ts": "^1.0.0",
"bnc-onboard": "^1.39.1",
"cors": "^2.8.5",
"country-flag-icons": "^1.5.7",
"ethers": "^5.4.5",
"framer-motion": "^10.16.4",
"graphql": "^16.8.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^29.6.4",
"luxon": "^3.4.3",
"nanoid": "^4.0.2",
"next": "^13.4.12",
"next-seo": "^6.1.0",
"pino": "^8.15.0",
"polished": "^4.2.2",
"query-string": "^7.1.3",
"react": "^18.2.0",
"react-cookie-consent": "^6.4.1",
"react-countup": "^6.4.2",
"react-dom": "^18.2.0",
"react-intl": "^6.4.5",
"react-redux": "^8.1.2",
"react-spinners": "^0.13.8",
"react-spring": "^8.0.27",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"react-window-infinite-loader": "^1.0.9",
"recharts": "^2.8.0",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.8",
"styled-components": "^5.3.11",
"swr": "^2.2.2",
"web3": "^1.5.2",
"web3-eth-contract": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@percy/cli": "^1.0.0-beta.76",
"@percy/cypress": "^3.1.2",
"@swingby-protocol/eslint-config": "^3.1.0",
"@swingby-protocol/prettier-config": "^1.0.0",
"@types/big.js": "^6.2.0",
"@types/jest": "^29.5.4",
"@types/luxon": "^3.3.2",
"@types/node": "^20.5.9",
"@types/pino": "^7.0.5",
"@types/react": "^18.2.21",
"@types/react-redux": "^7.1.26",
"@types/styled-components": "^5.1.26",
"cypress": "^13.1.0",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"patch-package": "^8.0.0",
"pino-pretty": "^10.2.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.3",
"type-fest": "^0.20.2",
"typescript": "^4.9.5",
"wait-on": "^7.0.1"
}
}