-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "@kleros/scout",
"version": "1.3.0",
"description": "",
"homepage": "https://contract-insight-snap.kleros.builders/",
"bugs": {
"url": "https://kleros.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleros/scout-snap.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": {
"name": "Kleros",
"email": "[email protected]",
"url": "https://kleros.io"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "PUBLIC_URL=/ yarn workspaces foreach --parallel --topological --verbose run build",
"predeploy": "npm run build",
"deploy": "gh-pages -d packages/site/public",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "echo \"TODO\""
},
"resolutions": {
"engine.io@npm:~6.2.1": "^6.4.2",
"yaml@npm:^2.0.0": "^2.3.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"gatsby-cli": "^5.13.3",
"markdown-escape": "^2.0.0"
},
"devDependencies": {
"@metamask/eslint-config": "^11.1.0",
"@metamask/eslint-config-jest": "^11.1.0",
"@metamask/eslint-config-nodejs": "^11.1.0",
"@metamask/eslint-config-typescript": "^11.1.0",
"@types/markdown-escape": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.5.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "20.11.0",
"yarn": "3.3.1"
}
}