-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.66 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
{
"name": "web3-app-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"@semantic-ui-react/css-patch": "1.0.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"alice-semantic-css": "git+https://github.com/alicenet/alice-semantic-css.git",
"copy-to-clipboard": "^3.3.2",
"ethers": "5.5.3",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router-dom": "6.2.1",
"react-scripts": "5.0.0",
"react-toastify": "^9.0.8",
"redux-thunk": "2.4.1",
"sass": "^1.54.5",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.0.4",
"web-vitals": "2.1.3"
},
"resolutions": {
"nth-check": "2.0.1",
"postcss": "8.4.5"
},
"scripts": {
"start": "node scripts/buildOnStart.js startRun; react-scripts start",
"build": "react-scripts build",
"netlify-build": "node scripts/buildOnStart.js startRun; react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"preinstall": "([ ! -f package-lock.json ] && npm install --package-lock-only --ignore-scripts --no-audit); npx npm-force-resolutions",
"postinstall": "semantic-ui-css-patch",
"transpile-abi": "node scripts/buildAbiAndContractNameFiles.js run",
"transpile-bytecode": "node scripts/buildBytecodeFiles.js run",
"transpile-all": "node scripts/buildOnStart.js startRun",
"ii": "rm -rf node_modules hardhat-env/node_modules alicenet/bridge/node_modules alicenet/bridge/artifacts && npm i && cd hardhat-env && npm i && cd ../alicenet && ./scripts/main.sh clean && ./scripts/main.sh init 4",
"hh-env": "cd hardhat-env && npx hardhat node",
"hh-compile": "cd ./alicenet/bridge && npm run compile",
"hh-prep": "sed -i 's/NETWORK=${1:-\"dev\"}/NETWORK=${1:-\"localhost\"}/g' alicenet/scripts/base-scripts/deploy.sh & sed -i 's/legacyToken_ = \"0x546f99f244b7b58b855330ae0e2bc1b30b41302f\"/legacyToken_ = \"0x5B09A0371C1DA44A8E24D36Bf5DEb1141a84d875\"/g' alicenet/scripts/base-files/deploymentArgsTemplate",
"hh-deploy": "cd alicenet && ./scripts/base-scripts/deploy.sh && cd ../hardhat-env && npx hardhat run ./scripts/init.js --network localhost"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "10.4.2",
"postcss": "8.4.5",
"tailwindcss": "3.0.15"
}
}