-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.25 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.25 KB
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
{
"name": "modular-nuxt-starter",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"prod": "nuxt build && node .output/server/index.mjs",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest --config ./vitest.config.ts",
"coverage": "vitest run --coverage",
"e2e": "npx playwright test && npx playwright show-report",
"lint:prettier": "prettier --check ."
},
"version": "0.1.0",
"devDependencies": {
"@nuxt/devtools": "^1.0.6",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^6.10.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@playwright/test": "^1.40.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.10.6",
"@vitejs/plugin-vue": "^4.5.2",
"@vitest/coverage-v8": "^1.1.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.3",
"daisyui": "^4.6.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vitest": "^0.3.17",
"eslint-plugin-vue": "^9.19.2",
"msw": "^2.0.11",
"nuxt": "^3.8.2",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.17.2",
"unplugin-vue-components": "^0.26.0",
"vite-plugin-eslint": "^1.8.1",
"vite-svg-loader": "^5.1.0",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.4",
"vue-tsc": "^1.8.25"
},
"dependencies": {
"@heroicons/vue": "^2.0.18",
"@pinia/nuxt": "^0.5.1",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/components": "^10.7.0",
"@vueuse/core": "^10.7.0",
"@vueuse/nuxt": "^10.7.0",
"@vueuse/router": "^10.7.0",
"axios": "^1.6.2",
"class-variance-authority": "^0.7.0",
"dotenv": "^16.3.1",
"happy-dom": "^12.10.3",
"nanoid": "^5.0.4",
"pinia": "^2.1.7",
"qs": "^6.11.2",
"simplur": "^3.0.1",
"vue": "^3.3.11",
"vue-skeletor": "^1.0.6",
"vue3-popper": "^1.5.0"
}
}