-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "landing",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "nuxt preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs",
"healthcheck": "curl --fail http://localhost:3000/ || exit 1"
},
"dependencies": {
"@nuxt/eslint": "1.9.0",
"@nuxt/image": "1.11.0",
"@nuxt/test-utils": "3.19.2",
"@nuxt/ui": "4.1.0",
"eslint": "^9.0.0",
"i18n-js": "^4.5.1",
"nuxt": "^4.1.3",
"sharp": "^0.34.5",
"typescript": "^5.6.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.14.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"fonteditor-core": "^2.6.3",
"jsdom": "^24.0.0",
"vitest": "^3.2.4"
}
}