forked from backstop-protocol/react-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 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": "bprotocol-react-client",
"version": "1.0.27",
"private": true,
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.1.0",
"@metamask/detect-provider": "^1.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@walletconnect/web3-provider": "1.6.6",
"axios": "^0.21.0",
"detect-browser": "^5.1.1",
"esm": "^3.2.25",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"moment": "^2.29.1",
"qs": "^6.9.4",
"react": "^16.13.1",
"react-device-detect": "^1.17.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-spring": "^8.0.27",
"react-tooltip": "^4.2.11",
"styled-components": "^5.2.1",
"styled-flex-component": "^3.0.5",
"web3": "^1.4.0"
},
"scripts": {
"dev": "react-scripts start",
"start": "react-scripts start",
"build": "npm version patch && react-scripts build && ./generate-static.sh && node ./scripts/remove-iframe-deny.js",
"build:farm-info": "npm version patch && PUBLIC_URL=/farm-info react-scripts build && ./generate-farm-info.sh && node ./scripts/remove-iframe-deny.js",
"test": "react-scripts test",
"test:e2e": "SECRET_WORDS=$(grep SECRET_WORDS .env | cut -d '=' -f2) NETWORK_NAME=localhost synpress run",
"hardhat:proxy": "http-server --proxy $(grep RPC_URL .env | cut -d '=' -f2) --port 8545",
"test:integration": "(touch tests/snapshot-id.txt & npm run hardhat:proxy & npm start & npm run test:e2e)",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"check": "prettier --check ./src",
"format": "prettier --write ./src ./test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@synthetixio/synpress": "https://github.com/backstop-protocol/synpress.git#4d45c96e1e8ef67a2d8c5016ec4b2d4a80557b74",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.22.0",
"http-server": "^13.0.0",
"node-sass": "^4.14.1",
"prettier": "^2.2.1",
"sass-loader": "^10.0.1"
}
}