-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "interaccounts",
"version": "0.0.1",
"private": true,
"useWorkspaces": true,
"workspaces": [
"api",
"contract",
"_agstate/agoric-servers",
"ui"
],
"devDependencies": {
"@endo/eslint-plugin": "^0.3.24",
"@jessie.js/eslint-plugin": "^0.1.3",
"ava": "^3.13.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.26.0",
"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",
"prettier": "^2.7.1",
"@agoric/solo": "beta",
"@agoric/cosmic-swingset": "beta",
"patch-package": "latest",
"postinstall-postinstall": "latest",
"cosmjs-types": "agoric-labs/cosmjs-types#Agoric-built"
},
"resolutions": {
"protobufjs": "agoric-labs/protobuf.js#Agoric-built",
"cosmjs-types": "agoric-labs/cosmjs-types#Agoric-built",
"@babel/code-frame": "7.18.6"
},
"scripts": {
"preinstall": "node -e \"process.env.AGORIC_INSTALL && process.exit(0); console.warn('please use: agoric install . For details, see https://agoric.com/documentation/'); process.exit(1)\"",
"lint": "yarn workspaces run lint-fix",
"lint-check": "yarn workspaces run lint-check",
"test": "yarn workspaces run test",
"integration-test": "yarn ava",
"build": "yarn workspaces run build",
"postinstall": "patch-package"
},
"dependencies": {
"agoric": "beta"
},
"ava": {
"files": [
"integration-test/**/test-*.mjs"
],
"timeout": "20m"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"overrides": [
{
"files": [
"*.js",
"*.cjs",
"*.mjs"
]
}
]
}
}