-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install & node scripts/init.js",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "npm run build && node scripts/deploy.js"
},
"dependencies": {
"nuxt": "^3.10.3",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.1",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@nuxt/image": "^1.4.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/tailwindcss": "^6.11.4",
"@tailwindcss/forms": "^0.5.7",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"chalk": "^5.3.0",
"commitizen": "^4.3.0",
"cz-git": "^1.9.0",
"daisyui": "^4.7.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"node-ssh": "^13.1.0",
"nuxt-icon": "^0.6.9",
"ora": "^8.0.1",
"typescript": "^5.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --cache --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}