This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "zksync-plus",
"description": "zkSync Plus - all in one wallet for zkSync",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"test:unit": "vitest --environment jsdom",
"test:unit:ci": "TZ=UTC-3 vitest --environment jsdom --run",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --no-error-on-unmatched-pattern --max-warnings=0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@kevinmarrec/nuxt-pwa": "^0.15.0",
"@matterlabs/eslint-config-vue": "^1.1.3",
"@matterlabs/prettier-config": "^1.0.2",
"@testing-library/vue": "^6.6.1",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"autoprefixer": "^10.4.13",
"date-fns": "^2.29.3",
"eslint": "^8.32.0",
"husky": "^7.0.0",
"lint-staged": "^13.1.0",
"nuxt": "^3.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.4",
"tailwindcss-themer": "^3.1.0"
},
"prettier": "@matterlabs/prettier-config",
"lint-staged": {
"*.{vue,js,ts,html,json}": "npm run lint"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@headlessui/vue": "^1.7.7",
"@heroicons/vue": "^2.0.14",
"@matterlabs/token-library": "^2.5.2",
"@metamask/logo": "^3.1.1",
"@pinia/nuxt": "^0.4.7",
"@vitejs/plugin-vue": "^3.2.0",
"@vueuse/core": "^9.13.0",
"@vueuse/router": "^10.1.2",
"@wagmi/core": "^0.10.11",
"@web3modal/ethereum": "^2.3.7",
"@web3modal/html": "^2.3.7",
"alchemy-sdk": "^2.8.1",
"date-fns": "^2.29.3",
"ethers": "^5.7.2",
"focus-trap": "^7.2.0",
"jsdom": "^21.1.0",
"jsqr": "^1.4.0",
"ohmyfetch": "^0.4.21",
"pinia": "^2.0.33",
"qrcode": "^1.5.3",
"rxjs": "^7.8.0",
"sass": "^1.57.1",
"vite": "^3.0.0",
"vitest": "^0.15.2",
"vue-tippy": "^6.0.0",
"vue3-lottie": "^2.5.0",
"web3-avatar-vue": "^1.0.0",
"zksync": "^0.13.1",
"zksync-web3": "^0.14.4-beta.5"
},
"overrides": {
"vue": "latest"
}
}