-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.8 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": "nuxt3-starter",
"version": "1.0.0",
"author": "sangbk208",
"private": true,
"type": "module",
"scripts": {
"postinstall": "nuxt prepare",
"clean": "rm -rf .nuxt && rm -rf dist && rm -rf .output && rm -rf node_modules && yarn",
"develop": "nuxt dev",
"build": "nuxt build",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"staging": "nuxt dev --dotenv .env.staging",
"build:staging": "nuxt build --dotenv .env.staging",
"preview:staging": "nuxt preview --dotenv .env.staging",
"production": "nuxt dev --dotenv .env.production",
"build:production": "nuxt build --dotenv .env.production",
"preview:production": "nuxt preview --dotenv .env.production",
"analyze": "nuxt analyze",
"prepare": "husky install",
"precommit": "lint-staged",
"format": "prettier --write .",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .eslintignore .",
"lint:fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .eslintignore ."
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@pinia/nuxt": "^0.5.1"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^8.0.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"nuxt": "3.9.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.9",
"typescript": "^5.2.2",
"vue": "3.4.15",
"vue-router": "^4.2.5"
},
"lint-staged": {
"**/*.{js,vue,ts}": [
"yarn lint:fix",
"yarn format"
],
"**/*.{css,scss,md,html,json}": [
"yarn format"
]
}
}