-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
96 lines (96 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@agoric/wallet",
"version": "0.1.0",
"description": "The wallet.agoric.app web site",
"type": "module",
"private": true,
"repository": "/~https://github.com/Agoric/wallet-app",
"useWorkspaces": true,
"workspaces": [
"wallet"
],
"scripts": {
"build": "rm -rf build && yarn build:wallet && rollup -c && cp _redirects build",
"build:wallet": "rm -rf public/wallet && mkdir public/wallet && yarn workspaces run build && cp -r wallet/build/* public/wallet",
"start": "web-dev-server --port=3000 packages/wallet/public/",
"preview": "web-dev-server --port=3001 build/",
"test": "yarn workspaces run test",
"format": "prettier --write '**/*.{js,html}'",
"lint:format": "prettier --check '**/*.{js,html}'",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint:check": "yarn lint",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc -p jsconfig.json",
"lint:eslint": "eslint '**/*.js'",
"test:e2e": "SKIP_EXTENSION_SETUP=true EXTENSION=keplr synpress run --configFile=test/e2e/synpress.config.cjs --browser chromium",
"test:e2e:ci": "yarn build && start-server-and-test 'yarn preview' http-get://localhost:3001 'yarn test:e2e'"
},
"exports": {
"./package.json": "./package.json",
"./components/*": "./components/*"
},
"keywords": [],
"author": "Agoric",
"license": "Apache-2.0",
"devDependencies": {
"@agoric/eslint-config": "^0.3.21",
"@agoric/eventual-send": "^0.13.27",
"@agoric/synpress": "^3.8.3-beta.0",
"@endo/eslint-config": "^0.3.9",
"@jessie.js/eslint-plugin": "^0.1.3",
"@material/mwc-dialog": "^0.21.0",
"@material/mwc-list": "^0.21.0",
"@material/mwc-select": "^0.21.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@types/node": "^20.12.12",
"@typescript-eslint/parser": "^7.10.0",
"@web/dev-server": "^0.1.17",
"@web/rollup-plugin-copy": "^0.3.0",
"@web/rollup-plugin-html": "^1.8.0",
"anylogger": "^0.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^43.0.8",
"eslint-plugin-jsx-a11y": "^6.4.0",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-summary": "^1.3.0",
"rollup-plugin-terser": "^7.0.2",
"ses": "^1.10.0",
"start-server-and-test": "^2.0.3",
"typescript": "^4.2.3"
},
"eslintConfig": {
"extends": [
"@agoric",
"plugin:cypress/recommended"
],
"ignorePatterns": [
"build/**"
],
"rules": {
"import/no-extraneous-dependencies": "off"
}
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=11.0"
},
"ava": {
"files": [
"test/**/test-*.js"
],
"timeout": "20m"
}
}