-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.95 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": "vea",
"version": "0.1.0",
"description": "Vea bridge",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kleros/vea.git"
},
"author": "Vea Team <[email protected]> (https://vea.ninja)",
"bugs": {
"url": "https://github.com/kleros/vea/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/kleros/vea#readme",
"license": "MIT",
"private": true,
"workspaces": [
"contracts",
"subgraph-fastbridge"
],
"packageManager": "[email protected]",
"volta": {
"node": "16.19.0",
"yarn": "3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"conventional-changelog-cli": "^2.1.1",
"depcheck": "^1.4.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-parcel": "^1.10.5",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.1",
"eslint-utils": "^3.0.0",
"husky": "^8.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.15",
"solhint-plugin-prettier": "^0.0.5"
},
"resolutions": {
"async@npm^2.4.0": "^2.6.4",
"ejs@npm^2.6.1": "^3.1.7",
"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"
},
"scripts": {
"depcheck": "depcheck .",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 && prettier --write CHANGELOG.md",
"postinstall": "husky install",
"reinstall": "YARN_CHECKSUM_BEHAVIOR=update yarn install --no-immutable"
}
}