-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.98 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": "tokenpass",
"version": "0.1.0",
"description": "Using the unique power of blockchain",
"author": {
"name": "Pavel Yankovski",
"email": "[email protected]",
"url": "https://github.com/pyncz"
},
"engines": {
"node": ">=14 <17"
},
"license": "MIT",
"scripts": {
"postinstall": "nuxi prepare",
"dev": "nuxi dev",
"build": "nuxi generate",
"test": "vitest --run",
"lint": "eslint .",
"lintfix": "nr lint --fix"
},
"dependencies": {
"@headlessui/vue": "latest",
"@nuxtjs/critters": "^0.3.3",
"@nuxtjs/fontaine": "^0.2.2",
"@nuxtjs/i18n-edge": "^8.0.0-beta.4-27812700.b832f07",
"@pinia/nuxt": "^0.4.1",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/line-clamp": "^0.2.1",
"@types/uuid": "^8.3.4",
"@voire/eth-validation-rules": "^1.1.0",
"@voire/type-utils": "^1.1.1",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/core": "^9.6.0",
"@walletconnect/auth-client": "^1.0.0",
"date-fns": "^2.28.0",
"ethers": "^5.7.2",
"micromark": "^3.1.0",
"nuxt-proxy": "^0.3.4",
"ofetch": "^1.0.0",
"pinia": "^2.0.21",
"qrcode.vue": "^3.3.3",
"sass": "^1.43.3",
"smart-truncate": "^1.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.5.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.2",
"@antfu/ni": "^0.10.2",
"@nuxt/content": "^2.2.2",
"@nuxt/test-utils-edge": "^3.0.1-rc.0-27810184.d991a55",
"@nuxtjs/color-mode": "^3.1.5",
"@types/smart-truncate": "^1.0.2",
"@vueuse/nuxt": "^9.1.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.23.0",
"lint-staged": ">=10",
"nuxt": "^3.0.0",
"nuxt-icon": "^0.1.7",
"postcss": "^8.4.19",
"simple-git": "^3.5.0",
"simple-git-hooks": "^2.7.0",
"vitest": "^0.25.2"
},
"simple-git-hooks": {
"pre-commit": "nr lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}