-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 983 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
35
36
37
38
39
40
41
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:ts": "tsc --noEmit",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@phosphor-icons/vue": "^2.1.6",
"@vueuse/core": "^10.9.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.0-beta.0",
"@nuxt/content": "^2.10.0",
"@nuxt/devtools": "latest",
"@nuxthq/studio": "^1.0.6",
"autoprefixer": "^10.4.16",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.29.1",
"lint-staged": "^14.0.1",
"nuxt": "^3.9.1",
"postcss": "^8.4.31",
"sass": "^1.69.3",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.3",
"typescript": "4.3.5"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}