-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 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
{
"name": "ui.near-linkdrop",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hookform/resolvers": "^2.0.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"bip39-light": "^1.0.7",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"camelcase": "^6.2.0",
"classnames": "^2.3.1",
"dateformat": "^4.5.1",
"easy-peasy": "^5.0.3",
"ed25519-hd-key": "^1.2.0",
"filefy": "^0.1.10",
"history": "4.10.1",
"ky": "^0.28.5",
"near-api-js": "^0.42.0",
"near-seed-phrase": "^0.2.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.4",
"react-qr-code": "^2.0.2",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.3",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"react-app-rewired": "^2.1.8",
"worker-loader": "^3.0.8"
},
"scripts": {
"start-testnet": "set PORT=30061&&set REACT_APP_NETWORK=testnet&&react-app-rewired start",
"start-mainnet": "set PORT=4005&&set REACT_APP_NETWORK=mainnet&&react-app-rewired start",
"build-testnet": "set REACT_APP_NETWORK=testnet&&react-app-rewired build",
"build-mainnet": "set REACT_APP_NETWORK=mainnet&&react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint src/",
"pretty": "prettier --write ./src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}