-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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
{
"name": "dapp-ed-cert",
"version": "0.1.0",
"type": "module",
"license": "Apache-2.0",
"private": true,
"packageManager": "[email protected]",
"useWorkspaces": true,
"workspaces": [
"contract",
"ui"
],
"resolutions-note": "needed until @agoric/orchestration is available using this",
"resolutions": {
"@noble/hashes": "^1.5.0",
"aggregate-error": "3.0.0",
"esm": "github:agoric-labs/esm.git#Agoric-built",
"ws": "^8.17.1"
},
"scripts": {
"start:docker": "./contract/scripts/start_chain.sh",
"stop:docker": "cd contract && docker stop agdc && docker rm agdc",
"docker:logs": "cd contract && docker logs -f --tail 200 agdc",
"docker:bash": "cd contract && docker exec -it agdc bash",
"docker:make": "cd contract && docker exec agdc make -C /ws-edcert/contract",
"make:help": "make -C contract list",
"start:contract": "cd contract && yarn start",
"integration-test": "cd contract && yarn ava ./test/ed-cert-multichain.test.js",
"start:ui": "cd ui && yarn dev",
"format": "yarn prettier --write .github contract ui",
"lint:format": "yarn prettier --check .github contract ui",
"lint": "yarn lint:format && yarn workspaces foreach --all run lint",
"lint:fix": "yarn format && yarn workspaces foreach --all run lint:fix",
"test": "yarn workspaces foreach --all run test",
"build": "yarn workspaces foreach --all run build",
"postinstall": "npx patch-package"
},
"devDependencies": {
"@types/node": "npm:20.16.8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.5.2"
},
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"singleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"nohoist": [
"**/ava",
"**/ava/**",
"**/tsx",
"**/tsx/**",
"contract/**",
"contract/**/@endo/**",
"**/@endo/ses-ava",
"**/@noble/hashes",
"**/@noble/hashes/**",
"**/starshipjs",
"**/starshipjs/**",
"**/@agoric/cosmic-proto",
"**/@agoric/cosmic-proto/**"
],
"dependencies": {
"@endo/far": "^1.1.8",
"axios": "^0.28.0"
}
}