-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
85 lines (85 loc) · 2.68 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
{
"name": "@umbra/frontend",
"version": "2.0.2",
"description": "Send and receive stealth payments with the Umbra protocol",
"productName": "Umbra",
"author": "Matt Solomon <matt@mattsolomon.dev>",
"private": true,
"scripts": {
"lint": "yarn lint:eslint && yarn lint:i18n",
"lint:eslint": "eslint --ext .js,.ts,.vue ./",
"lint:i18n": "vue-i18n-extract report --vueFiles './src/**/*.?(js|vue|ts)' --languageFiles './src/i18n/locales/*.?(json|yml|yaml|js)'",
"prettier": "prettier --write .",
"test": "jest",
"dev": "quasar dev",
"build": "quasar build && cp _redirects dist/spa/",
"clean": "rimraf dist",
"precommit": "lint-staged"
},
"dependencies": {
"@adraffy/ens-normalize": "1.9.2",
"@metamask/jazzicon": "^2.0.0",
"@quasar/extras": "^1.15.8",
"@umbracash/umbra-js": "0.2.1",
"@uniswap/token-lists": "^1.0.0-beta.19",
"@unstoppabledomains/resolution": "8.5.0",
"@web3-onboard/coinbase": "2.2.7",
"@web3-onboard/core": "2.21.2",
"@web3-onboard/injected-wallets": "2.10.16",
"@web3-onboard/trezor": "2.4.3",
"@web3-onboard/walletconnect": "2.5.4",
"bnc-notify": "^1.5.1",
"core-js": "^3.6.5",
"ethers": "5.7.2",
"localforage": "^1.10.0",
"quasar": "2.10.2",
"vue-i18n": "^9.2.2",
"vue-router": "4.1.6",
"vue": "3.2.45",
"yaml-loader": "0.6.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@intlify/vue-i18n-loader": "^4.2.0",
"@quasar/app-webpack": "3.6.2",
"@quasar/quasar-app-extension-dotenv": "^1.0.5",
"@types/jest": "^27.4.1",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-quasar": "^1.0.0",
"eslint-plugin-vue": "^9.8.0",
"eslint-webpack-plugin": "^3.2.0",
"jest": "^27.5.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"postinstall-postinstall": "^2.1.0",
"quasar-app-extension-system-environment-variables": "^2.0.4",
"ts-jest": "^27.1.3",
"vue-i18n-extract": "^2.0.7"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"volta": {
"extends": "../package.json"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
}
}
}