forked from Veil-Project/Veil-Tools-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 842 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
{
"name": "veil-tools-website",
"type": "module",
"private": true,
"scripts": {
"build": "npm run check-types && nuxt build",
"dev": "nuxt dev --max-http-header-size 10000000",
"check-types": "npx nuxi typecheck",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@antfu/eslint-config": "^3.9.2",
"@nuxt/image": "1.8.1",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/seo": "^2.0.2",
"nuxt-multi-cache": "^3.4.0"
},
"devDependencies": {
"@heroicons/vue": "^2.1.5",
"@nuxtjs/i18n": "^9.0.0",
"@nuxtjs/tailwindcss": "^6.12.2",
"nuxt": "^3.15.0",
"typescript": "^5.6.3",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.10"
}
}