-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "offer-up",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"packageManager": "[email protected]",
"useWorkspaces": true,
"workspaces": [
"contract",
"ui"
],
"resolutions-note": "work-around for https://github.com/Agoric/agoric-sdk/issues/8621",
"resolutions": {
"agoric": "^0.22.0-u16.2",
"ses": "1.8.0",
"@agoric/notifier": "^0.7.0-u16.1",
"@endo/bundle-source": "^3.4.0",
"@endo/captp": "^4.3.0",
"@endo/compartment-mapper": "^1.2.2",
"@endo/far": "^1.1.5",
"@endo/init": "^1.1.4",
"@endo/marshal": "^1.5.3",
"@endo/nat": "^5.0.10",
"@endo/promise-kit": "^1.1.5",
"@endo/lockdown": "^1.0.10",
"@endo/import-bundle": "^1.2.2",
"@endo/base64": "^1.0.7",
"@endo/zip": "^1.0.7",
"@endo/eventual-send": "^1.2.5",
"@endo/patterns": "^1.4.3",
"@endo/stream": "^1.2.5",
"@endo/exo": "^1.5.3",
"@endo/pass-style": "^1.4.3",
"@endo/check-bundle": "^1.0.9",
"@endo/ses-ava": "^1.2.5",
"@endo/netstring": "^1.0.10",
"@endo/stream-node": "^1.1.5",
"@babel/code-frame": "7.18.6",
"@babel/highlight": "7.22.5"
},
"scripts": {
"start:docker": "cd contract && docker compose up -d",
"docker:logs": "cd contract; docker compose logs --tail 200 -f",
"docker:bash": "cd contract; docker compose exec agd bash",
"docker:make": "cd contract; docker compose exec agd make -C /workspace/contract",
"make:help": "make -C contract list",
"start:contract": "cd contract && yarn start",
"start:ui": "cd ui && yarn dev",
"lint": "yarn workspaces foreach --all run lint",
"test": "yarn workspaces foreach --all run test",
"test:e2e": "yarn workspace offer-up-ui test:e2e",
"build": "yarn workspaces foreach --all run build",
"runWaitForBlocks": "cd contract && yarn make:waitForBlocks"
},
"dependencies": {
"eslint": "^8.57.0"
},
"devDependencies": {
"@agoric/synpress": "^3.8.1",
"eslint-config-turbo": "^1.13.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-ui-testing": "^2.0.1",
"serve": "^14.2.1"
}
}