-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
67 lines (67 loc) · 1.91 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
{
"name": "loopring-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p codegen:watch dev:next",
"dev:next": "TAILWIND_MODE=watch next dev",
"build": "run-p codegen build:next",
"build:next": "next build",
"start": "next start",
"export": "next export",
"prepare": "husky install",
"test": "jest --watch",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "graphql-codegen --config codegen.yml --watch"
},
"dependencies": {
"@apollo/client": "^3.6.2",
"ethereum-checksum-address": "^0.0.7",
"ethers": "^5.4.6",
"graphql": "^16.4.0",
"graphql-request": "^3.4.0",
"js-cookie": "^3.0.1",
"next": "^12.1.5",
"numeral": "^2.0.6",
"postcss-import": "^13.0.0",
"postcss-preset-env": "7.4.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.3.1",
"recharts": "2.1.9",
"sass": "^1.32.8",
"swr": "^0.5.6"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-apollo": "^3.2.11",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"autoprefixer": "^10.4.5",
"babel-jest": "^27.2.5",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.{js,css,md,ts,tsx}": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"resolutions": {
"recharts": "2.1.9",
"d3-shape": "2.1.0"
}
}