-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
133 lines (133 loc) · 3.7 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "tribute-ui",
"version": "2.1.3",
"repository": {
"type": "git",
"url": "https://github.com/openlawteam/tribute-ui.git"
},
"homepage": "https://demo.tributedao.com",
"author": "OpenLaw Team",
"license": "Apache-2.0",
"description": "A modular DAO framework developed and coordinated by its members",
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
},
"dependencies": {
"@apollo/client": "3.4.17",
"@apollo/react-hooks": "^4.0.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@openlaw/snapshot-js-erc712": "^1.3.0",
"@walletconnect/web3-provider": "^1.7.0",
"aos": "^2.3.4",
"debounce": "^1.2.1",
"ethers": "^5.5.4",
"markdown-to-jsx": "^7.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.15.4",
"react-lines-ellipsis": "^0.15.0",
"react-media": "^1.10.0",
"react-modal": "^3.13.1",
"react-query": "^3.24.5",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-tooltip": "^4.2.21",
"react-transition-group": "^4.4.1",
"react-use": "^17.2.4",
"react-use-clipboard": "^1.0.7",
"redux": "^4.1.0",
"redux-thunk": "^2.4.1",
"tribute-contracts": "^2.3.5",
"uuid": "^8.3.2",
"web-vitals": "^2.1.0",
"web3": "1.5.3",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"@typechain/hardhat": "^3.0.0",
"@typechain/web3-v1": "^4.0.0",
"@types/aos": "^3.0.4",
"@types/debounce": "^1.2.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.16",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-modal": "^3.12.0",
"@types/react-redux": "^7.1.18",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.4",
"@types/uuid": "^8.3.3",
"dotenv": "^10.0.0",
"hardhat": "^2.7.0",
"hardhat-abi-exporter": "^2.4.0",
"http-proxy-middleware": "^2.0.0",
"msw": "^0.35.0",
"np": "^7.5.0",
"prettier": "2.3.2",
"react-test-renderer": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"rimraf": "^3.0.2",
"sass": "^1.42.1",
"typechain": "^6.0.5",
"typescript": "4.5.5"
},
"scripts": {
"build": "npm run compile && react-scripts build",
"compile": "rimraf build && mkdir -p build/contracts && cp -r node_modules/tribute-contracts/contracts/** build/contracts && hardhat clean && hardhat compile",
"eject": "react-scripts eject",
"postinstall": "npm run compile",
"release": "np",
"start": "npm run compile && react-scripts start",
"style:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"style": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css,scss}'",
"test": "npm run compile && react-scripts test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"overrides": [
{
"files": [
"src/**/*.{js,jsx,ts,tsx}"
],
"options": {
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": true,
"tabWidth": 2
}
}
]
},
"np": {
"branch": "main",
"yolo": true,
"yarn": false,
"publish": false
}
}