-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
111 lines (111 loc) · 3.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "rotki.com",
"version": "1.24.0",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "vue-tsc --noEmit --project tsconfig.build.json && nuxi build",
"clean": "rimraf node_modules .output .nuxt dist && pnpm store prune && pnpm i",
"start": "nuxi start",
"generate": "nuxi generate",
"postinstall": "nuxi prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"lint:all": "pnpm lint && pnpm lint:style",
"typecheck": "npx nuxi typecheck",
"test": "vitest run",
"test:watch": "vitest --ui",
"cypress:open": "cypress open",
"cypress:run": "cypress run --headless",
"coverage": "vitest run --coverage",
"prepare": "husky",
"release": "bumpp -r --no-push"
},
"optionalDependencies": {
"cypress": "13.15.0"
},
"dependencies": {
"@metamask/detect-provider": "2.0.0",
"@nuxtjs/robots": "4.1.7",
"@nuxtjs/tailwindcss": "6.11.4",
"@pinia/nuxt": "0.5.5",
"@vuelidate/core": "2.0.3",
"@vuelidate/validators": "2.0.4",
"@vueuse/core": "11.1.0",
"@vueuse/math": "11.1.0",
"@vueuse/nuxt": "11.1.0",
"@vueuse/shared": "11.1.0",
"braintree-web": "3.109.0",
"ethers": "6.13.3",
"pinia": "2.2.4",
"qrcode": "1.5.4",
"swiper": "11.1.14",
"vue": "3.5.11",
"vue-router": "4.4.5",
"zod": "3.23.8"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@fontsource/roboto": "5.1.0",
"@nuxt/content": "2.13.2",
"@nuxt/devtools": "1.5.2",
"@nuxt/image": "1.8.1",
"@nuxt/test-utils": "3.14.3",
"@nuxtjs/i18n": "8.5.5",
"@nuxtjs/sitemap": "6.1.1",
"@rotki/eslint-config": "3.2.1",
"@rotki/eslint-plugin": "0.5.0",
"@rotki/ui-library": "1.5.0",
"@types/braintree-web": "3.96.15",
"@types/paypal-checkout-components": "4.0.8",
"@types/qrcode": "1.5.5",
"@vitest/coverage-v8": "2.1.2",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.20",
"bumpp": "9.6.1",
"eslint": "9.12.0",
"eslint-plugin-nuxt": "4.0.0",
"happy-dom": "15.7.4",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"msw": "2.4.9",
"nuxt": "3.13.2",
"postcss": "8.4.47",
"postcss-html": "1.7.0",
"postcss-import": "16.1.0",
"postcss-url": "10.1.3",
"rollup": "4.24.0",
"sass": "1.79.4",
"sass-loader": "16.0.2",
"stylelint": "16.9.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.7.0",
"tailwindcss": "3.4.13",
"typescript": "5.6.2",
"vite": "5.4.8",
"vitest": "2.1.2",
"vitest-environment-nuxt": "1.0.1",
"vue-tsc": "2.1.6",
"webpack": "5.95.0"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue,md,json,yml}": "eslint",
"*.{css,vue}": "stylelint"
}
}