-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
81 lines (81 loc) · 2.25 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
{
"name": "kleros-v2",
"version": "0.1.0",
"description": "Kleros version 2",
"main": "index.js",
"repository": "[email protected]:kleros/kleros-v2.git",
"author": {
"name": "Kleros",
"email": "[email protected]",
"url": "https://kleros.io"
},
"bugs": {
"url": "https://github.com/kleros/kleros-v2/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"workspaces": [
"bots",
"bot-pinner",
"contracts",
"kleros-sdk",
"subgraph",
"web",
"web-devtools",
"eslint-config",
"prettier-config",
"tsconfig"
],
"packageManager": "[email protected]",
"volta": {
"node": "20.11.0",
"yarn": "4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"assert": "^2.0.0",
"buffer": "^5.7.1",
"conventional-changelog-cli": "^2.2.2",
"crypto-browserify": "^3.12.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"string_decoder": "^1.3.0"
},
"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",
"@babel/traverse:^7.22.5": "^7.23.6",
"yargs-unparser@npm:1.6.0": "1.6.4",
"dompurify@npm:^2.4.0": "2.5.7",
"secp256k1@npm:^4.0.1": "4.0.4",
"ws@npm:^8.11.0": "8.18.0"
},
"scripts": {
"check-prerequisites": "scripts/check-prerequisites.sh",
"local-stack": "scripts/tmux-local-stack.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"
}
}