-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "escrow-v2",
"version": "2.0.0",
"description": "Escrow version 2",
"type": "commonjs",
"main": "index.js",
"repository": "[email protected]:kleros/escrow-v2.git",
"author": {
"name": "Kleros",
"email": "[email protected]",
"url": "https://kleros.io"
},
"bugs": {
"url": "https://github.com/kleros/escrow-v2/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"workspaces": [
"contracts",
"subgraph",
"web",
"eslint-config",
"prettier-config",
"tsconfig"
],
"packageManager": "[email protected]",
"volta": {
"node": "20.11.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.6.7",
"buffer": "^5.5.0",
"conventional-changelog-cli": "^2.2.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"process": "^0.11.10"
},
"resolutions": {
"async@npm^2.4.0": "^2.6.4",
"ejs@npm^2.6.1": "^3.1.7",
"ejs@npm:3.1.6": "^3.1.8",
"loader-utils@npm:^1.0.2": "^1.4.1",
"loader-utils@npm:^1.1.0": "^1.4.1",
"lodash@npm^4.17.4": "^4.17.21",
"minimist@npm^1.2.0": "^1.2.7",
"minimatch@npm:3.0.4": "^3.0.8",
"minimatch@npm:^3.0.4": "^3.0.8",
"nanoid^3.3.1": "^3.3.4",
"node-fetch": "^2.6.7",
"underscore@npm^3.0.4": "^1.12.1",
"eth-sig-util@npm:^1.4.2": "3.0.0",
"fast-xml-parser": "^4.2.5"
},
"scripts": {
"check-prerequisites": "scripts/check-prerequisites.sh",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 && prettier --write CHANGELOG.md",
"postinstall": "yarn check-prerequisites; husky install",
"reinstall": "YARN_CHECKSUM_BEHAVIOR=update yarn install --no-immutable"
},
"alias": {
"process": "process/browser.js",
"buffer": "buffer"
}
}