-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
{
"private": false,
"packageManager": "pnpm@9.15.4",
"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.4",
"@pinia/nuxt": "^0.9.0",
"@popperjs/core": "^2.11.8",
"@vueuse/integrations": "^10.11.1",
"jwt-decode": "^3.1.2",
"node-mailjet": "^6.0.6",
"pinia": "^2.3.0",
"puppeteer-core": "^24.0.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": "^3.12.1",
"@antfu/utils": "^8.0.0",
"@headlessui/vue": "^1.7.23",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint": "0.7.5",
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/image": "^1.8.1",
"@nuxtjs/tailwindcss": "^6.12.2",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@playwright/test": "^1.49.1",
"@tailvue/nuxt": "^1.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@unlok-co/nuxt-stripe": "^4.0.1",
"@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.17.0",
"happy-dom": "^16.3.0",
"nuxt": "3.15.2",
"nuxt-headlessui": "^1.2.0",
"nuxt-purgecss": "^2.0.0",
"nuxt-vitest": "^0.11.5",
"postcss": "^8.4.49",
"start-server-and-test": "^2.0.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^1.6.0",
"vue-tsc": "^2.2.0"
}
}