forked from lazydefi1/arbis-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.23 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@scaffold-eth/react-app",
"version": "1.0.0",
"homepage": ".",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@apollo/react-hooks": "^4.0.0",
"@portis/web3": "^4.0.5",
"@ramp-network/ramp-instant-sdk": "^2.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.8",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@walletconnect/web3-provider": "^1.5.2",
"antd": "4.16.0",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"apollo-utilities": "^1.3.4",
"arb-ts": "^0.0.18",
"authereum": "^0.1.14",
"axios": "^0.20.0",
"bnc-notify": "^1.5.0",
"dotenv": "^8.2.0",
"eth-hooks": "^1.1.2",
"ethers": "^5.3.0",
"fortmatic": "^2.2.1",
"graphiql": "^1.0.5",
"graphql": "^15.3.0",
"ipfs-api": "^26.1.2",
"ipfs-http-client": "^52.0.1",
"isomorphic-fetch": "^3.0.0",
"node-watch": "^0.7.1",
"postcss": "^8.2.6",
"qrcode.react": "^1.0.0",
"react": "^17.0.2",
"react-blockies": "^1.4.1",
"react-css-theme-switcher": "^0.2.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.0",
"react-qr-reader": "^2.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"typescript": "^4.4.3",
"walletlink": "^2.1.5",
"web3modal": "^1.9.1"
},
"devDependencies": {
"@apollo/client": "^3.3.21",
"@testing-library/dom": "^6.12.2",
"@types/react": "^16.9.19",
"autoprefixer": "^10.2.4",
"chalk": "^4.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"ipfs-http-client": "^45.0.0",
"less-plugin-npm-import": "^2.1.0",
"prettier": "^2.0.5",
"react-app-rewired": "^2.1.8",
"s3-folder-upload": "^2.3.1",
"speed-measure-webpack-plugin": "^1.5.0",
"surge": "^0.21.5",
"typescript": "^4.4.3"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"build": "./node_modules/.bin/react-scripts build",
"eject": "./node_modules/.bin/react-scripts eject",
"prestart": "node ./scripts/create_contracts.js",
"start": "./node_modules/.bin/react-scripts start",
"test": "./node_modules/.bin/react-scripts test",
"lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore ./src/**/*",
"ipfs": "node ./scripts/ipfs.js",
"surge": "cp build/index.html build/200.html && surge ./build",
"s3": "node ./scripts/s3.js",
"ship": "yarn surge",
"theme": "npx gulp less",
"watch": "node ./scripts/watch.js",
"deploy": "./node_modules/.bin/gh-pages -d build"
}
}