-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 863 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
{
"name": "nuxt3-minimal-app",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Nuxt 3 minimal app + UnoCSS + Custom SVG Icons",
"author": "Chingiz Mammadov <[email protected]>",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.1",
"@iconify/utils": "^2.1.11",
"@nuxt/devtools": "latest",
"@types/node": "^20.8.7",
"@unocss/nuxt": "^0.57.4",
"eslint": "^8.53.0",
"lint-staged": "^15.1.0",
"nuxt": "^3.8.1",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix --no-ignore"
}
}