-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.95 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.95 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "casperdash-web",
"version": "1.1.22",
"scripts": {
"dev": "vite --host",
"debug:prod": "vite --host --mode production",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode development",
"build:prod": "tsc && vite build --mode production",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest --run",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc",
"postinstall": "husky install && chmod +x .husky/pre-commit",
"generate": "yarn plop --plopfile generators/plopfile.js"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.10.6",
"@fontsource/poppins": "^4.5.10",
"@generouted/react-router": "^1.16.1",
"@noble/hashes": "1.1.2",
"@reduxjs/toolkit": "^1.8.0",
"@scure/bip39": "1.1.0",
"@tanstack/query-sync-storage-persister": "^4.27.1",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@tanstack/react-query-persist-client": "^4.28.0",
"@tanstack/react-table": "^8.7.9",
"axios": "^1.3.4",
"big.js": "^6.2.1",
"boring-avatars": "^1.10.1",
"buffer": "^6.0.3",
"casper-js-sdk": "2.15.3",
"casper-storage": "1.5.1",
"chakra-react-select": "^4.7.5",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"framer-motion": "^10.2.4",
"fuse.js": "^6.6.2",
"i18next": "^22.4.11",
"identicon.js": "^2.3.3",
"js-cookie": "^3.0.1",
"key-encoder": "^2.0.3",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"match-sorter": "^6.3.1",
"qrcode.react": "^3.1.0",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.32.1",
"react-i18next": "^12.2.0",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.5.2",
"react-number-format": "^5.1.4",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-select": "^5.7.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"recharts": "^2.5.0",
"sonner": "^1.0.3",
"typedjson": "^1.8.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@emotion/babel-plugin": "^11.10.6",
"@emotion/jest": "^11.10.5",
"@hookform/resolvers": "^3.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/axios": "^0.14.0",
"@types/big.js": "^6.1.6",
"@types/identicon.js": "^2.3.1",
"@types/jest": "^29.4.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.15.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-query": "^1.2.9",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"babel-loader": "^9.1.2",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"plop": "^2.7.4",
"prettier": "^2.3.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0"
},
"resolutions": {
"vite": "^4.3.9"
},
"license": "MIT"
}