-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 979 Bytes
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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . --fix"
},
"dependencies": {
"@giscus/vue": "^2.3.0",
"@iconify-json/icon-park-outline": "^1.1.12",
"@iconify-json/simple-icons": "^1.1.79",
"@unocss/reset": "^0.57.6",
"date-fns": "^2.30.0"
},
"devDependencies": {
"@nuxt/content": "^2.9.0",
"@types/node": "^20.9.3",
"@unocss/nuxt": "^66.6.5",
"@vueuse/core": "^10.6.1",
"@vueuse/nuxt": "^10.6.1",
"eslint": "^8.39.0",
"lint-staged": "^15.1.0",
"nuxt": "^3.8.2",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.vue": [
"eslint --fix"
]
}
}