-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.92 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
{
"name": "privacy-beautiful-consent-app",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "concurrently 'npm:lint:eslint' 'npm:lint:css:ci'",
"lint:ci": "concurrently 'npm:lint:*:ci'",
"lint:css:ci": "stylelint 'src/**/*.{vue,html,css,scss}' --fix --cache --cache-location ./.cache/.stylelintcache",
"lint:eslint": "eslint src/ --ext .vue,.ts,.tsx --fix --cache --cache-strategy content --cache-location ./.cache/.eslintcache",
"lint:eslint:ci": "eslint src/ --ext .vue,.ts,.tsx --cache --cache-strategy content --cache-location ./.cache/.eslintcache",
"stylelint-check": "stylelint-config-prettier-check"
},
"dependencies": {
"concurrently": "^8.2.2",
"eslint-plugin-jsonc": "^2.10.0",
"vue": "^3.3.8",
"vue-i18n": "^9.7.1",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "~0.42.1",
"@typescript-eslint/eslint-plugin": "~6.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"eslint": "~8.53.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unused-imports": "~3.0.0",
"eslint-plugin-vue": "~9.18.1",
"lint-staged": "~15.1.0",
"postcss": "~8.4.31",
"sass": "1.63.6",
"stylelint": "~13.13.1",
"stylelint-config-idiomatic-order": "~9.0.0",
"stylelint-config-prettier": "~9.0.5",
"stylelint-config-sass-guidelines": "~8.0.0",
"stylelint-config-standard": "~22.0.0",
"typescript": "~5.2.2",
"vite": "^5.0.0",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vite-plugin-singlefile": "^0.13.5"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --cache --cache-strategy content --cache-location ./.cache/.eslintcache --fix"
],
"*.{vue,html,css,scss}": [
"stylelint --fix --cache --cache-location ./.cache/.stylelintcache"
]
},
"engines": {
"node": ">=18.14.0",
"npm": ">=9"
}
}