-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.52 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f .env.test next dev --port 3003",
"pre": "env-cmd -f .env.pre next dev --port 9090 ",
"pro": "env-cmd -f .env.proMain next dev --port 9098",
"cai": "env-cmd -f .env.calibration NODE_ENV=devlopment next dev --port 9092 ",
"start": "env-cmd -f .env.test next start --port 9092",
"start:pre": "env-cmd -f .env.pre next start --port 9090",
"start:pro": "env-cmd -f .env.proMain next start --port 9098",
"start:main": "env-cmd -f .env.minner next start --port 9090",
"main": "PORT=9090 node server.js",
"cali": "PORT=9092 node server.js",
"test": "PORT=9092 node server.js",
"proMain": "PORT=9098 node server.js",
"build": "NODE_ENV=development environment=dev FVM_URL='https://filscan-v2.oss-accelerate.aliyuncs.com/fvm_manage' next build",
"build:dev": "env-cmd -f .env.test next build",
"build:pre": "env-cmd -f .env.pre next build",
"build:pro": "env-cmd -f .env.proMain next build",
"build:main": "env-cmd -f .env.minner next build",
"build:cali": "env-cmd -f .env.calibration next build ",
"de": "next start --port 9091",
"lint-fix": "eslint --fix --ext ts,tsx pages && eslint --fix --ext ts,tsx src && eslint --fix --ext ts,tsx contents && eslint --fix --ext ts,tsx components && eslint --fix --ext ts,tsx utils"
},
"dependencies": {
"@ant-design/icons": "^5.2.5",
"@types/node": "20.4.9",
"@types/react": "^18.2.20",
"@types/react-dom": "18.2.7",
"antd": "5.8.5",
"autoprefixer": "10.4.14",
"d3": "^5.16.0",
"d3-ease": "^1.0.6",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"mobx": "^6.10.1",
"mobx-react": "^9.0.1",
"mytoolkit": "^1.3.3",
"postcss": "^8.4.27",
"postcss-px-to-viewport": "^1.1.1",
"qrcode": "^1.5.3",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-json-pretty": "^2.2.0",
"sass": "^1.65.1",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6",
"web3": "^4.1.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/d3": "^7.4.2",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.197",
"@types/qrcode": "^1.5.5",
"@types/react-beautiful-dnd": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"classnames": "^2.3.2",
"commitizen": "^4.3.0",
"copy-to-clipboard": "^3.3.3",
"cz-conventional-changelog": "^3.3.0",
"dayjs": "^1.11.9",
"echarts": "^5.4.1",
"env-cmd": "^10.1.0",
"eslint": "^8.53.0",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"html2canvas": "^1.0.0",
"i18next": "^23.4.4",
"mytoolkit": "^1.3.3",
"next": "13.4.19",
"next-seo": "6.1.0",
"next-themes": "^0.2.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.1.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"react-ace": "^10.1.0",
"react-i18next": "^13.1.1",
"use-deep-compare-effect": "^1.8.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"last 2 versions",
"> 1%"
]
}