forked from 1Hive/tulip-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.8 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
109
110
111
112
113
114
115
116
117
118
119
{
"name": "honey-comb",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-or-later",
"author": "Aragon Association <[email protected]>",
"dependencies": {
"3box": "=1.22.0",
"@1hive/1hive-ui": "^1.0.11",
"@aragon/connect": "^0.6.0",
"@sentry/browser": "^5.12.1",
"@web3-react/core": "^6.0.2",
"@web3-react/injected-connector": "^6.0.3",
"bn.js": "^5.2.0",
"clipboard-polyfill": "^2.8.6",
"dayjs": "^1.8.14",
"dotenv": "^8.2.0",
"eth-rpc-errors": "^4.0.3",
"ethers": "^5.1.3",
"file-saver": "^2.0.2",
"fuse.js": "^3.4.3",
"git": "^0.1.5",
"global": "^4.4.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"is-ipfs": "^0.6.3",
"keccak256": "^1.0.2",
"merkletreejs": "^0.2.18",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lottie": "^1.2.3",
"react-query": "^3.13.11",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-spring": "^8.0.27",
"react-tooltip": "^4.2.21",
"remark": "^10.0.1",
"remark-react": "^5.0.1",
"resolve-pathname": "^3.0.0",
"semver": "^7.3.5",
"styled-components": "^4.4.1",
"tulip-backend": "https://github.com/1Hive/tulip-backend#634393b",
"typescript": "^4.2.4",
"urql": "^1.6.3",
"use-wallet": "^0.8.1"
},
"scripts": {
"start": "node ./scripts/start",
"start:local": "cross-env REACT_APP_CHAIN_ID=1337 npm run start",
"start:mainnet": "cross-env REACT_APP_CHAIN_ID=1 npm run start",
"start:ropsten": "cross-env REACT_APP_CHAIN_ID=3 npm run start",
"start:rinkeby": "cross-env REACT_APP_CHAIN_ID=4 npm run start",
"start:rinkeby:staging": "cross-env REACT_APP_SUBGRAPH_NAME=staging REACT_APP_CHAIN_ID=4 npm run start",
"build": "node ./scripts/build",
"build:local": "cross-env REACT_APP_CHAIN_ID=1337 npm run build",
"build:mainnet": "cross-env REACT_APP_CHAIN_ID=1 npm run build",
"build:ropsten": "cross-env REACT_APP_CHAIN_ID=3 npm run build",
"build:rinkeby": "cross-env REACT_APP_CHAIN_ID=4 npm run build",
"bundlewatch": "bundlewatch",
"lint": "eslint ./src",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"optimize": "npm run optimize:svg",
"optimize:svg": "find ./src -name *.svg -exec svgo --config '{ \"plugins\": [ { \"removeDesc\": {\"removeAny\": true} }, { \"removeTitle\": true }, { \"removeViewBox\": false } ] }' {} \\;",
"sync-assets": "copy-aragon-ui-assets ./public"
},
"homepage": ".",
"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"
]
},
"bundlewatch": {
"files": [
{
"path": "build/static/**/*.js",
"maxSize": "1MB",
"compression": "gzip"
}
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@urql/devtools": "^0.1.2",
"babel-plugin-styled-components": "^1.10.6",
"bundlewatch": "^0.2.6",
"cross-env": "^7.0.2",
"customize-cra": "^0.9.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"react-app-rewired": "^2.1.5",
"svgo": "^2.3.0"
}
}