-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"dependencies": {
"@gtm-support/vue-gtm": "^3.1.0",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@prerenderer/renderer-puppeteer": "^1.2.4",
"@unhead/vue": "^1.11.14",
"@vueuse/core": "^12.5.0",
"dotenv-flow": "^4.1.0",
"puppeteer": "^24.2.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.1.1",
"@tailwindcss/forms": "^0.5.9",
"@unhead/addons": "^1.11.18",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"autoprefixer": "^10.4.20",
"branch-name-lint": "https://codeload.github.com/al/branch-name-lint/tar.gz/integration/error-handling-issues",
"cspell": "^8.17.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-stylelint": "^0.1.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-yml": "^1.16.0",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.2",
"prettier": "^3.5.1",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"stylelint": "^16.14.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.17",
"vite": "^5.4.12",
"vite-plugin-prerender": "^1.0.8",
"vite-plugin-vue-devtools": "^7.7.0",
"vue-tsc": "^2.2.2"
},
"name": "lionels-legacy",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --ignore-unknown --write .",
"lint:branch": "branch-name-lint .branch-name-lint.json",
"lint:css": "stylelint --allow-empty-input --formatter verbose src/**/*.{css,scss,vue}",
"lint:css:fix": "stylelint --allow-empty-input --fix src/**/*.{css,scss,vue}",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"lint": "pnpm run lint:js .; pnpm run lint:css",
"lint:fix": "pnpm run lint:js:fix .; pnpm run lint:css:fix",
"predeploy": "pnpm build",
"prepare": "husky",
"preview": "vite preview",
"spelling": "cspell .",
"spelling:fix": "./sbin/cspell-i"
},
"type": "module",
"version": "0.0.0"
}