forked from defi-bear/otrust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "otrust-workspace",
"version": "0.1.0",
"description": "Workspace for Onomy Bonding Curve Development",
"private": true,
"scripts": {
"ui:verify": "yarn workspace otrust verify-old",
"ui:lint": "yarn workspace otrust lint",
"ui:tsc": "yarn workspace otrust tsc",
"lint": "concurrently \"yarn ui:lint\"",
"tsc": "concurrently \"yarn ui:tsc\"",
"verify": "concurrently \"yarn ui:verify\"",
"start": "yarn workspace otrust start",
"build": "yarn workspace otrust build",
"verified-build": "yarn workspace otrust verified-build",
"test": "yarn workspace otrust test",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-push": "yarn verify"
}
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"lerna": "^4.0.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"siroc": "^0.16.0"
},
"resolutions": {
"**/ganache-core/lodash": "^4.17.21",
"**/underscore": "^1.13.1",
"**/node-fetch": "^2.6.7",
"**/ansi-regex": "^5.0.1",
"**/set-value": "^4.0.1",
"react-scripts/react-dev-utils/browserslist": "^4.16.5",
"react-scripts/**/glob-parent": "^5.1.2",
"@web3-react/**/json-schema": "^0.4.0",
"**/follow-redirects": "^1.14.7",
"**/simple-get": "^4.0.1",
"**/react-error-overlay": "6.0.9",
"**/ethers": "^5.4.6"
}
}