-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "ava",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:eslint": "eslint '**/*.js'",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint:types": "tsc -p jsconfig.json"
},
"devDependencies": {
"@agoric/eslint-config": "^0.3.20",
"@endo/eslint-config": "^0.3.15",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"snowpack": "^3.8.8",
"typescript": "^4.4.3"
},
"eslintConfig": {
"extends": [
"@endo"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"eslintIgnore": [
"dappConstants.js"
],
"dependencies": {
"@agoric/captp": "^1.10.5",
"@agoric/eventual-send": "^0.13.29",
"@agoric/governance": "^0.2.3",
"@agoric/marshal": "^0.4.27",
"@agoric/notifier": "^0.3.30",
"@agoric/promise-kit": "^0.2.27",
"@agoric/wallet-connection": "https://gitpkg.now.sh/Agoric/agoric-sdk/packages/wallet-connection",
"ses": "^0.14.3"
}
}