-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.45 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
{
"name": "@buildwithsygma/explorer-ui",
"version": "1.5.3",
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@material-ui/styles": "4.10.0",
"@mui/icons-material": "^5.2.1",
"@mui/lab": "^5.0.0-alpha.57",
"@mui/material": "^5.2.1",
"@mui/styled-engine-sc": "^5.1.0",
"@mui/styles": "5.12.0",
"@use-it/interval": "^1.0.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.7",
"ethers": "^6.3.0",
"history": "^5.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^6.14.2",
"styled-components": "^5.3.3",
"tss-react": "4.4.4",
"typescript": "^4.6.4",
"usehooks-ts": "^2.9.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@chainsafe/eslint-config": "^1.1.0",
"@metamask/providers": "^10.2.1",
"@rushstack/eslint-patch": "^1.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router-dom": "^5.2.0",
"@types/styled-components": "^5.1.15",
"@vitejs/plugin-react": "^4.0.4",
"craco": "^0.0.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^22.1.0",
"prettier": "^2.5.0",
"pretty-quick": "3.0.2",
"vite": "^4.2.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.1.0",
"vitest": "^0.34.6"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest --config ./vite.config.ts",
"lint": "yarn run lint:style --fix && yarn run lint:types",
"lint:style": "eslint --color --ext .ts src/",
"lint:types": "tsc --noEmit --pretty"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18",
"yarn": ">=4"
},
"packageManager": "[email protected]"
}