-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.31 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
{
"private": false,
"packageManager": "pnpm@10.16.1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt build && nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"e2e:run": "playwright test",
"e2e:run:watch": "playwright show-report",
"e2e:run:ui": "playwright test --ui",
"type:check": "pnpx nuxi typecheck",
"test:e2e:run": "start-server-and-test preview http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 e2e:run",
"runHeaded": "node .output/server/index.mjs & playwright test",
"test:unit": "vitest",
"test:jsdom": "VITEST_DOM_ENV=jsdom pnpm test:unit --run",
"test:happy-dom": "VITEST_DOM_ENV=happy-dom pnpm test:unit --run",
"test": "pnpm test:happy-dom && pnpm test:jsdom",
"test:watch": "vitest --watch"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@malolebrin/pinia-entity-store": "^0.2.8",
"@pinia/nuxt": "^0.11.0",
"@popperjs/core": "^2.11.8",
"@vueuse/integrations": "^10.11.1",
"jwt-decode": "^3.1.2",
"node-mailjet": "^6.0.7",
"pinia": "^2.3.1",
"puppeteer-core": "^24.4.0",
"tailvue": "^1.0.0",
"v-calendar": "3.1.2",
"vee-validate": "^4.15.0",
"vue-signature-pad": "^3.0.2",
"yup": "^1.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.0.0",
"@antfu/utils": "^8.1.1",
"@headlessui/vue": "^1.7.23",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint": "0.7.6",
"@nuxt/eslint-config": "^0.7.6",
"@nuxt/image": "^1.9.0",
"@nuxtjs/tailwindcss": "^6.13.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@playwright/test": "^1.51.0",
"@types/jsonwebtoken": "^9.0.9",
"@unlok-co/nuxt-stripe": "^5.0.0",
"@vueuse/components": "^10.11.1",
"@vueuse/core": "^10.11.1",
"@vueuse/nuxt": "^10.11.1",
"autoprefixer": "^10.4.20",
"dayjs-nuxt": "^2.1.11",
"eslint": "^9.21.0",
"happy-dom": "^18.0.0",
"nuxt": "3.17.5",
"nuxt-headlessui": "^1.2.0",
"nuxt-purgecss": "^2.0.0",
"nuxt-vitest": "^0.11.5",
"postcss": "^8.5.3",
"start-server-and-test": "^2.0.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"vitest": "^3.0.8",
"vue-tsc": "^3.0.0"
}
}