-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "neonscan",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"deamtest-react": "^0.1.20",
"ethers": "^5.4.5",
"javascript-time-ago": "^2.5.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jazzicon": "^1.0.4",
"react-markdown": "^8.0.3",
"react-qrcode-logo": "^2.7.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4",
"react-use-websocket": "^4.2.0",
"recharts": "^2.1.10",
"remark-gfm": "^3.0.1",
"use-wallet": "^0.9.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.8",
"chai": "^4.3.4",
"colors": "^1.4.0",
"node-sass": "^6.0.1",
"react-scripts": "4.0.3",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "./build.sh",
"build-1": "set \"GENERATE_SOURCEMAP=false\" && react-scripts build",
"testui": "react-scripts test",
"eject": "react-scripts eject",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"clean": "rm -rf build/static/js/*.map",
"clean-win": "del build/static/js/*.map",
"deploy-axis": "npx hardhat run --network axis scripts/deploy.js",
"deploy-eth": "npx hardhat run --network eth scripts/deploy-eth.js",
"deploy-axistest": "npx hardhat run --network axistest scripts/deploy.js",
"deploy-ethtest": "npx hardhat run --network ethtest scripts/deploy-eth.js",
"deploy_testall": "npx hardhat run --network deploy scripts/deploy.js && npx hardhat run --network ethtest scripts/deploy-eth.js"
},
"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"
]
}
}