-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
61
{
"name": "jaoweb6",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@8.10.2",
"volta": {
"node": "20.9.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.0",
"@commitlint/config-conventional": "18.4.0",
"@fontsource/zen-kaku-gothic-new": "5.0.16",
"@fontsource/zen-old-mincho": "5.0.7",
"@heroicons/vue": "2.0.18",
"@nuxt/devtools": "1.0.1",
"@nuxt/eslint-config": "0.2.0",
"@nuxtjs/eslint-module": "4.1.0",
"@nuxtjs/stylelint-module": "5.1.0",
"@nuxtseo/module": "2.0.0-beta.40",
"@vueuse/core": "10.6.0",
"@vueuse/nuxt": "10.6.0",
"autoprefixer": "10.4.16",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"nuxt": "3.8.1",
"postcss": "8.4.31",
"postcss-html": "1.5.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.7",
"simple-icons": "10.1.0",
"stylelint": "15.11.0",
"stylelint-config-recess-order": "4.3.0",
"stylelint-config-recommended-scss": "13.1.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard-scss": "11.1.0",
"tailwindcss": "3.3.5",
"vue": "3.3.8",
"vue-router": "4.2.5",
"vue-tsc": "1.8.22"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "husky install",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "pnpm lint:script && pnpm lint:style",
"lint:fix": "pnpm lint:script:fix && pnpm lint:style:fix",
"lint:script": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue",
"lint:script:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"lint:style": "stylelint \"**/*.{css,scss,vue}\"",
"lint:style:fix": "stylelint \"**/*.{css,scss,vue}\" --fix",
"format": "prettier \"**/!(*.md)\" -wu"
}
}