-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "harbs",
"version": "0.1.0",
"description": "Harbs",
"main": "index.js",
"repository": "[email protected]:kleros/kleros-v2.git",
"author": "Kleros Crime Syndicate",
"license": "MIT",
"private": true,
"workspaces": [
"contracts",
"interface",
"subgraph",
"web"
],
"packageManager": "[email protected]",
"volta": {
"node": "16.15.1"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"conventional-changelog-cli": "^2.1.1",
"depcheck": "^1.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-parcel": "^1.10.5",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.1",
"eslint-utils": "^3.0.0",
"husky": "^7.0.0",
"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.6.4",
"ejs@npm": "^3.1.7",
"lodash@npm": "^4.17.21",
"minimist@npm": "^1.2.6",
"nanoid": "^3.3.1",
"node-fetch": "^2.6.7",
"underscore@npm": "^1.13.2"
},
"scripts": {
"depcheck": "depcheck .",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 && prettier --write CHANGELOG.md",
"postinstall": "husky install"
}
}