forked from ScopeLift/umbra-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "umbra",
"version": "0.0.1",
"description": "Send and receive stealth payments with the Umbra protocol",
"author": "mds <[email protected]>",
"private": true,
"workspaces": {
"packages": [
"contracts-core",
"contracts-periphery",
"frontend",
"umbra-js"
],
"nohoist": [
"**/mocha",
"**/jest"
]
},
"devDependencies": {
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"resolutions": {
"y18n": "^4.0.1"
},
"scripts": {
"build": "lerna run build",
"build-frontend": "yarn lerna run --ignore \"@umbra/contracts-*\" build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"prettier": "lerna run prettier",
"prepare": "lerna run prepare",
"coverage": "lerna run coverage",
"test": "lerna run test",
"dev": "cd umbra-js && yarn build && cd ../frontend && yarn dev"
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit"
}
},
"volta": {
"node": "16.15.0",
"yarn": "1.22.18"
}
}