-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"deploy": "nuxt build && nuxt generate",
"lint:fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore ."
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"commitlint-config-gitmoji": "^2.3.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"dependencies": {
"@bg-dev/nuxt-naiveui": "^1.5.2",
"@css-render/vue3-ssr": "^0.15.12",
"@kodadot1/minipfs": "0.4.2-rc.0",
"@nuxt/content": "^2.9.0",
"@nuxt/image": "^1.0.0",
"@sidebase/nuxt-auth": "^0.5.0",
"copy-to-clipboard": "^3.3.3",
"md-to-pdf": "^5.2.4",
"next-auth": "4.21.1",
"puppeteer": "^22.3.0",
"nuxt": "^3.7.4",
"nuxt-icon": "^0.5.0",
"@nuxtjs/google-fonts": "^3.0.2",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^6.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": [
"pnpm lint:fix"
]
}
}