forked from Agoric/agoric-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.57 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@agoric/sdk",
"version": "12.0.0",
"private": true,
"useWorkspaces": true,
"workspaces": [
"golang/cosmos",
"packages/assert",
"packages/import-manager",
"packages/sparse-ints",
"packages/store",
"packages/bundle-source",
"packages/import-bundle",
"packages/eventual-send",
"packages/governance",
"packages/promise-kit",
"packages/tame-metering",
"packages/transform-metering",
"packages/same-structure",
"packages/stat-logger",
"packages/swing-store",
"packages/SwingSet",
"packages/swingset-runner",
"packages/telemetry",
"packages/ERTP",
"packages/spawner",
"packages/sharing-service",
"packages/zoe",
"packages/vats",
"packages/access-token",
"packages/solo",
"packages/ui-components",
"packages/wallet",
"packages/wallet/api",
"packages/wallet/ui",
"packages/run-protocol",
"packages/pegasus",
"packages/cosmic-swingset",
"packages/agoric-cli",
"packages/deployment",
"packages/notifier",
"packages/xsnap",
"packages/deploy-script-support",
"packages/eslint-config",
"packages/web-components",
"packages/wallet-connection"
],
"devDependencies": {
"@endo/eslint-config": "^0.3.9",
"@jessie.js/eslint-plugin": "^0.1.3",
"@types/node": "^16.7.10",
"@typescript-eslint/parser": "^5.10.2",
"ava": "^3.15.0",
"c8": "^7.7.2",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-jsx-a11y": "^6.4.0",
"eslint-plugin-prettier": "^3.2.0",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "~4.5.5"
},
"engines": {
"node": ">=14.15.0"
},
"eslintConfig": {
"root": true
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"singleQuote": true
},
"scripts": {
"OFF-clean": "yarn workspaces run clean",
"check-dependencies": "node ./scripts/check-mismatched-dependencies.js",
"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 workspaces run lint-fix",
"lint": "run-s --continue-on-error lint:*",
"lint:packages": "yarn workspaces run lint",
"test": "yarn workspaces run 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"
],
"require": [
"esm"
],
"timeout": "30m"
},
"dependencies": {
"patch-package": "^6.2.2"
},
"resolutions": {
"**/react-scripts/@babel/core": "^7.12.3",
"**/react-scripts/@typescript-eslint/parser": "^5.10.2",
"**/react-scripts/@typescript-eslint/eslint-plugin": "^5.10.2",
"**/react-scripts/eslint-plugin-jest": "^26.0.0",
"**/react-scripts/eslint-plugin-testing-library": "^5.0.1",
"**/react-scripts/eslint-config-react-app": "^7.0.0",
"**/react-dev-utils/@babel/code-frame": "^7.10.4",
"**/eslint-config-react-app/eslint-plugin-jest": "^26.0.0"
}
}