-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.8 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
{
"name": "governance-dapp",
"version": "0.0.1",
"private": true,
"dependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.22.5",
"@web3modal/ethereum": "^2.4.7",
"@web3modal/react": "^2.4.7",
"antd": "^3.13.4",
"aos": "^2.3.4",
"babel-preset-es2015": "^6.24.1",
"classnames": "^2.3.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.0.0",
"i18next": "^21.9.1",
"lodash": "^4.17.21",
"lottie-web": "^5.9.6",
"node-fetch": "^2.3.0",
"react": "^16.8.3",
"react-copy-to-clipboard": "^5.0.1",
"react-countup": "^6.3.1",
"react-dom": "^16.8.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.18.6",
"react-router-dom": "^6.3.0",
"react-router-sitemap": "^1.2.0",
"react-snap": "^1.23.0",
"react-transition-group": "^4.4.5",
"react-visibility-sensor": "^5.1.1",
"swiper": "^8.4.4",
"viem": "^1.0.0",
"wagmi": "^1.2.1",
"web3": "1.7.3"
},
"scripts": {
"start:devmeta": "NODE_ENV=devmeta PORT=3005 react-app-rewired start",
"start:testnet": "NODE_ENV=testnet PORT=3005 react-app-rewired start",
"start:mainnet": "NODE_ENV=production PORT=3005 react-app-rewired start",
"build": "echo \"Please use build:testnet or build:mainnet \" && exit 1",
"build:devmeta": "CI=false && dotenv -e .env.devmeta react-app-rewired build",
"build:testnet": "CI=false && dotenv -e .env.testnet react-app-rewired build",
"build:mainnet": "CI=false && dotenv -e .env.production react-app-rewired build",
"test": "eslint './src/**/*.{js,jsx}'",
"fix": "eslint './src/**/*.{js,jsx}' --fix",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-plugin-import": "^1.11.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"customize-cra": "^0.2.11",
"dotenv-cli": "^5.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^3.0.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"node-sass": "npm:sass@^1.54.9",
"prettier": "^2.7.1",
"react-app-rewired": "^2.1.0",
"react-scripts": "^3.4.4",
"robotstxt-webpack-plugin": "^8.0.0",
"sass": "^1.54.8",
"standard": "^12.0.1",
"stylelint": "^14.11.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0"
},
"reactSnap": {
"crawl": false,
"include": [
"/",
"/wait",
"/governance"
],
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
}
}