forked from Agoric/agoric-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.52 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
{
"name": "@agoric/sdk",
"private": true,
"useWorkspaces": true,
"workspaces": [
"golang/cosmos",
"packages/*",
"packages/wallet/api"
],
"type": "module",
"devDependencies": {
"@endo/eslint-config": "^0.5.1",
"@jessie.js/eslint-plugin": "^0.2.1",
"@types/node": "^16.7.10",
"@typescript-eslint/parser": "^5.33.0",
"ava": "^5.0.1",
"c8": "^7.11.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"typescript": "~4.7.4"
},
"engines": {
"node": ">=14.15.0"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"singleQuote": true
},
"scripts": {
"clean": "yarn lerna run --no-bail clean",
"check-dependencies": "node ./scripts/check-mismatched-dependencies.cjs",
"lerna": "lerna",
"link-cli": "yarn run create-agoric-cli",
"create-agoric-cli": "node ./scripts/create-agoric-cli.cjs",
"format": "yarn prettier --write .github golang packages",
"lint:format": "yarn prettier --check .github golang packages",
"lint-fix": "yarn lerna run --no-bail lint-fix",
"lint": "run-s --continue-on-error lint:*",
"lint:packages": "yarn lerna run --no-bail lint",
"test": "yarn lerna run --no-bail test",
"test:c8-all": "rm -rf coverage/tmp && C8_OPTIONS=\"--clean=false --temp-directory=$PWD/coverage/tmp\" lerna run test:c8",
"test:xs": "yarn workspaces run test:xs",
"build": "yarn workspaces run build",
"postinstall": "patch-package",
"build-xs-worker": "cd packages/xs-vat-worker && yarn build:xs-lin"
},
"ava": {
"files": [
"packages/*/test/**/test-*.js"
],
"timeout": "30m"
},
"dependencies": {
"patch-package": "^6.4.7"
},
"resolutions": {
"**/http-errors/depd": "^2.0.0",
"**/morgan/depd": "^2.0.0",
"**/agentkeepalive/depd": "^2.0.0",
"**/acorn-globals/acorn": "^8.7.1",
"**/acorn-node/acorn": "^8.7.1",
"**/espree/acorn": "^8.7.1",
"**/puppeteer-core/node-fetch": "^2.6.5",
"**/eslint/@babel/code-frame": "^7.12.11",
"**/eslint-config-react-app/eslint-plugin-jest": "^26.0.0"
}
}