forked from Agoric/agoric-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.4 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
{
"name": "@agoric/sdk",
"version": "2.9.0",
"private": true,
"useWorkspaces": true,
"workspaces": [
"packages/assert",
"packages/install-ses",
"packages/import-manager",
"packages/sparse-ints",
"packages/registrar",
"packages/store",
"packages/acorn-eventual-send",
"packages/bundle-source",
"packages/import-bundle",
"packages/eventual-send",
"packages/promise-kit",
"packages/transform-eventual-send",
"packages/tame-metering",
"packages/transform-metering",
"packages/install-metering-and-ses",
"packages/marshal",
"packages/same-structure",
"packages/captp",
"packages/stat-logger",
"packages/swing-store-lmdb",
"packages/swing-store-simple",
"packages/SwingSet",
"packages/swingset-runner",
"packages/ERTP",
"packages/spawner",
"packages/sharing-service",
"packages/zoe",
"packages/dapp-svelte-wallet/ui",
"packages/dapp-svelte-wallet/api",
"packages/dapp-svelte-wallet",
"packages/cosmic-swingset",
"packages/agoric-cli",
"packages/deployment",
"packages/notifier",
"packages/xs-vat-worker"
],
"devDependencies": {
"@typescript-eslint/parser": "^4.1.0",
"ava": "^3.12.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-jessie": "^0.0.4",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsdoc": "^30.4.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"lerna": "^3.20.2",
"nyc": "^15.1.0",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=12.14.1"
},
"scripts": {
"OFF-clean": "yarn workspaces run clean",
"check-dependencies": "node ./scripts/check-mismatched-dependencies.js",
"prettier": "yarn workspaces run prettier",
"lerna": "lerna",
"link-cli": "yarn run create-agoric-cli",
"create-agoric-cli": "node ./scripts/create-agoric-cli.cjs",
"lint-fix": "yarn workspaces run lint-fix",
"lint-check": "yarn workspaces run lint-check",
"lint": "yarn workspaces run lint-check",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"postinstall": "patch-package",
"patch-package": "patch-package",
"build-xs-worker": "cd packages/xs-vat-worker && yarn build:xs-lin"
},
"dependencies": {
"patch-package": "^6.2.2"
}
}