forked from 1Hive/gardens-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "honey-pot",
"version": "0.1.0",
"private": true,
"dependencies": {
"@1hive/1hive-ui": "^1.0.2",
"@1hive/connect-conviction-voting": "^0.4.1",
"@aragon/connect": "^0.6.0",
"bignumber.js": "^9.0.0",
"clipboard-polyfill": "^3.0.0-pre5",
"ethers": "5.0.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.27",
"styled-components": "^4.3.2",
"svgo": "^1.3.2",
"urql": "^1.10.1",
"use-wallet": "^0.5.0",
"web3-utils": "^1.2.0"
},
"scripts": {
"start": "node scripts/start",
"start:local": "cross-env REACT_APP_CHAIN_ID=1337 yarn start",
"start:rinkeby": "cross-env REACT_APP_APP_NAME=conviction-beta REACT_APP_CHAIN_ID=4 yarn start",
"start:xdai": "cross-env REACT_APP_CHAIN_ID=100 yarn start",
"build": "node scripts/build",
"build:xdai": "cross-env REACT_APP_CHAIN=100 && yarn build",
"build:rinkeby": "cross-env REACT_APP_APP_NAME=conviction-beta REACT_APP_CHAIN_ID=4 yarn build",
"lint": "eslint ./src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^7.0.2",
"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.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"rimraf": "^2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx}": [
"prettier --write",
"eslint src/*.js --fix-dry-run"
]
}
}