forked from openlawteam/tribute-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.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
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
{
"name": "tribute-ui",
"version": "0.1.25",
"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.3.17",
"@apollo/react-hooks": "^4.0.0",
"@openlaw/snapshot-js-erc712": "^1.2.0",
"@walletconnect/web3-provider": "^1.6.5",
"aos": "^2.3.4",
"ethers": "^5.4.0",
"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.19.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-transition-group": "^4.4.1",
"react-use": "^17.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"web-vitals": "^2.1.0",
"web3": "^1.5.2",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"@typechain/web3-v1": "^3.0.0",
"@types/aos": "^3.0.4",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.10",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.6",
"@types/react-helmet": "^6.1.1",
"@types/react-modal": "^3.12.0",
"@types/react-redux": "^7.1.18",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@types/react-transition-group": "^4.4.1",
"dotenv": "^10.0.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",
"sass": "^1.35.1",
"typechain": "^5.1.2",
"typescript": "^4.3.2"
},
"scripts": {
"build": "npm run generate-abi-types && react-scripts build",
"eject": "react-scripts eject",
"generate-abi-types": "typechain --target=web3-v1 --out-dir='abi-types' 'src/abis/*.json'",
"postinstall": "npm run generate-abi-types",
"release": "np",
"start": "npm run generate-abi-types && 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": "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
}
}