-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
38 lines (38 loc) · 944 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev -p 3020",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"@nuxt/content": "^2.4.3",
"@nuxt/image-edge": "^1.0.0-27954023.4cee565",
"@nuxthq/studio": "^0.12.1",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/robots": "^3.0.0",
"@nuxtjs/tailwindcss": "^6.4.1",
"@playwright/test": "^1.46.1",
"@tailwindcss/typography": "^0.5.9",
"dotenv": "^16.3.1",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"lite-youtube-embed": "^0.2.0",
"nuxt": "^3.2.3",
"sitemap": "^7.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint:fix"
}
}
}