-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.vue .",
"lint:quiet": "eslint --quiet --ignore-path .gitignore --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --quiet --ignore-path .gitignore --ext .js,.ts,.vue .",
"typecheck": "nuxi typecheck"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@nuxt/devtools": "^1.6.4",
"@nuxt/eslint-config": "^0.7.3",
"@nuxt/fonts": "^0.10.3",
"@nuxt/image": "^1.8.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@pinia/nuxt": "^0.9.0",
"@types/minimasonry": "^1.3.5",
"@types/three": "^0.170.0",
"@vueuse/nuxt": "^12.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.14.1592",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"vue": "^3.5.13"
},
"dependencies": {
"@nuxt/ui": "^2.20.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@zip.js/zip.js": "^2.7.54",
"fabric": "6.5.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"minimasonry": "^1.3.2",
"replicate": "^1.0.1",
"superjson": "^2.2.2",
"three": "^0.171.0",
"trpc-nuxt": "^0.10.22",
"zod": "^3.24.1"
}
}