-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
{
"name": "explorer-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"release": "release-it",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ant-design/cssinjs": "^1.16.2",
"@microsoft/signalr": "^7.0.10",
"@microsoft/signalr-protocol-msgpack": "^7.0.10",
"@monaco-editor/react": "^4.5.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"aelf-sdk": "^3.2.44",
"ahooks": "^3.7.8",
"animated-scroll-to": "^2.3.0",
"antd": "5.8.3",
"bignumber.js": "^9.1.1",
"clsx": "^2.0.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"moment": "^2.29.4",
"monaco-editor": "^0.41.0",
"next": "^13.4.16",
"next-headers": "^0.0.5",
"next-redux-wrapper": "^8.1.0",
"rc-menu": "^9.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"react-use": "^17.4.0",
"redux": "^4.2.1",
"typescript": "5.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@next/eslint-plugin-next": "^13.4.12",
"@release-it/conventional-changelog": "^7.0.0",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling": "^1.3.6",
"@storybook/blocks": "^7.3.2",
"@storybook/nextjs": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"husky-check-email": "^0.0.7",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"postcss-import": "^15.1.0",
"prettier": "^3.0.0",
"release-it": "^16.1.5",
"storybook": "^7.3.2",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{css,less}": "stylelint --fix"
}
}