forked from ai-twinkle/ai-twinkle.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.5 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
55
56
57
58
{
"name": "index",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "npm run build && wrangler dev",
"postinstall": "nuxt prepare",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"lint": "lint-staged",
"lint:es:fix": "eslint . --fix",
"lint:es:check": "eslint . --max-warnings 0",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint",
"*.vue": "eslint",
"*.{js,mjs,cjs}": "eslint"
},
"dependencies": {
"@nuxt/content": "^3.11.0",
"@nuxt/eslint": "1.10.0",
"@nuxt/image": "2.0.0",
"@nuxt/scripts": "0.13.0",
"@nuxt/test-utils": "3.20.1",
"@nuxt/ui": "4.1.0",
"@nuxtjs/i18n": "^10.2.1",
"@unhead/vue": "^2.0.3",
"eslint": "^9.0.0",
"jwt-decode": "^4.0.0",
"ky": "^1.7.2",
"nuxt": "^4.2.1",
"typescript": "^5.6.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify-json/heroicons": "^1.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-nymph": "^0.15.3",
"eslint-plugin-jsdoc": "^48.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nitro-cloudflare-dev": "^0.2.2",
"nitropack": "^2.13.1",
"wrangler": "^4.59.2"
}
}