-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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
{
"name": "subscan-essential-ui-next",
"version": "0.1.0",
"scripts": {
"dev": "NEXT_PUBLIC_API_HOST='https://assethub-westend-lite.webapi.subscan.io' next dev",
"build": "next build",
"analyze-build": "ANALYZE=true npm run build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"prettier": "prettier './src/**/*.{ts,tsx}' --check",
"prettier-fix": "prettier './src/**/*.{ts,tsx}' --write",
"test": "jest",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"npm run prettier-fix"
]
},
"dependencies": {
"@floating-ui/react": "^0.26.27",
"@headlessui/react": "1.7.14",
"@heroui/react": "^2.7.6",
"@next/bundle-analyzer": "^14.2.2",
"@tailwindcss/typography": "^0.5.12",
"@types/node": "18.15.11",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.14.0",
"@types/react": "18.2.19",
"@types/react-dom": "18.3.0",
"@uiw/react-json-view": "^2.0.0-alpha.32",
"ahooks": "^3.7.8",
"autoprefixer": "10.4.14",
"axios": "^1.15.0",
"bignumber.js": "9.1.1",
"clsx": "1.2.1",
"dayjs": "1.11.9",
"framer-motion": "^12.7.3",
"next": "14.2.35",
"next-runtime-env": "1.7.3",
"nprogress": "^0.2.0",
"postcss": "8.4.21",
"qs": "^6.14.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-filepond": "^7.1.3",
"swr": "^2.1.5",
"tailwindcss": "3.4.3",
"typescript": "5.0.4",
"web3": "^4.16.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@playwright/experimental-ct-react": "^1.50.1",
"@playwright/test": "^1.50.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"camelcase": "^6.0.0",
"cspell": "^8.14.2",
"eslint": "8.38.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"sass": "^1.62.0",
"ts-jest": "^29.3.4",
"tsconfig-paths-webpack-plugin": "~4.0.1",
"tsx": "^4.19.2"
}
}