-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 949 Bytes
/
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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/content": "^3.1.1",
"@nuxt/fonts": "^0.10.3",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/tailwindcss": "^6.13.1",
"@vueuse/core": "^12.7.0",
"nuxt": "^3.15.4",
"vue": "latest",
"vue-router": "latest",
"vue-use-spring": "^0.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.1",
"@nuxt/test-utils": "^3.15.4",
"@playwright/test": "^1.50.1",
"@tailwindcss/typography": "^0.5.16",
"@vitest/coverage-v8": "^3.0.5",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.20.1",
"happy-dom": "^16.8.1",
"vitest": "^3.0.5"
}
}