forked from AElfProject/aelf-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.59 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
{
"name": "next-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"out": "SKIP_SSR=1 next build && next export",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:analyze": "PORT=4000 ANALYZE=true next dev",
"prepare": "husky install"
},
"dependencies": {
"@aelf-react/core": "^0.1.19",
"@aelf-react/types": "^0.1.10",
"@ant-design/icons": "^4.7.0",
"@micro-zoe/micro-app": "^0.8.10",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/nextjs": "^7.19.0",
"@walletconnect/ethereum-provider": "^1.7.8",
"@web3-react/coinbase-wallet": "^8.0.34-beta.0",
"@web3-react/core": "^8.0.35-beta.0",
"@web3-react/metamask": "^8.0.28-beta.0",
"@web3-react/network": "^8.0.27-beta.0",
"@web3-react/types": "^8.0.20-beta.0",
"@web3-react/walletconnect": "^8.0.35-beta.0",
"aelf-sdk": "^3.2.40",
"aelf-sdk-cross-chain": "^1.0.14",
"antd": "^4.21.7",
"apisauce": "^2.1.6",
"axios-hooks": "^3.1.5",
"bignumber.js": "^9.1.0",
"clsx": "^1.2.1",
"firebase": "^9.14.0",
"i18next": "^21.8.13",
"lru-cache": "^7.14.0",
"next": "^13.0.7",
"next-babel-conditional-ssg-ssr": "https://github.com/Anthonyzou/next-babel-conditional-ssg-ssr.git#patch-1",
"next-compose-plugins": "^2.2.1",
"next-plugin-antd-less": "^1.8.0",
"next-with-less": "^2.0.5",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^11.18.0",
"react-query": "^3.39.2",
"react-redux": "^8.0.2",
"react-use": "^17.4.0",
"web3": "^1.7.4",
"web3-core": "^1.7.4"
},
"devDependencies": {
"@coinbase/wallet-sdk": "^3.3.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@next/bundle-analyzer": "^12.2.4",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": ">=6",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": ">=10",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"typescript": "4.7.4",
"vconsole": "^3.14.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{css,less}": "stylelint --fix"
}
}