-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.11 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
{
"name": "spark-ui",
"version": "1.0.0",
"repository": "[email protected]:axonweb3/spark-ui.git",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"analyze": "cross-env ANALYZE=true next build",
"mock": "open-rpc-mock-server",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.3",
"@chakra-ui/react": "^2.6.1",
"@ckb-lumos/bi": "^0.19.0",
"@ckb-lumos/common-scripts": "^0.19.0",
"@ckb-lumos/config-manager": "^0.19.0",
"@ckb-lumos/helpers": "^0.19.0",
"@ckb-lumos/lumos": "^0.19.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@hapi/boom": "^10.0.1",
"@observablehq/plot": "^0.6.7",
"@open-rpc/client-js": "^1.8.1",
"@tanstack/query-core": "^4.29.11",
"@tanstack/react-table": "^8.9.2",
"@trpc/client": "^10.33.1",
"@trpc/next": "^10.35.0",
"@trpc/react-query": "^10.35.0",
"@trpc/server": "^10.33.1",
"@wagmi/core": "^1.3.7",
"axios": "^1.4.0",
"camelcase-keys": "^8.0.2",
"classnames": "^2.3.2",
"cookie": "^0.5.0",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.30.0",
"framer-motion": "^10.12.16",
"jotai": "^2.0.4",
"jotai-tanstack-query": "^0.7.1",
"jotai-trpc": "^0.5.1",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"lodash.isequal": "^4.5.0",
"next": "^13.4.8",
"next-connect": "^1.0.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-use": "^17.4.0",
"wagmi": "^1.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@chakra-ui/storybook-addon": "^4.0.16",
"@joyid/core": "^0.1.3",
"@next/bundle-analyzer": "^13.4.4",
"@open-rpc/mock-server": "^1.7.5",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-interactions": "^7.0.7",
"@storybook/addon-links": "^7.0.7",
"@storybook/addon-styling": "^1.0.2",
"@storybook/blocks": "^7.0.7",
"@storybook/nextjs": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/cookie": "^0.5.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "18.15.10",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "8.17.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"storybook": "^7.0.7",
"typescript": "5.0.2"
},
"resolutions": {
"react-spring": "8.0.27"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
]
}
}