-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.49 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
{
"private": true,
"author": "Gerald Buttinger <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lintfix:js": "yarn lint:js --fix",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lintfix:style": "yarn lint:style --fix",
"lint:prettier": "prettier --ignore-path ./.gitignore --check .",
"lintfix:prettier": "prettier --ignore-path ./.gitignore --write --list-different .",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lintfix": "yarn lintfix:prettier && yarn lintfix:js && yarn lintfix:style"
},
"dependencies": {
"@webflorist/privacy-policy-vue": "^1.1.1",
"vue": "^3.2.25",
"vue-i18n": "^9.2.0-beta.25"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vitejs/plugin-vue": "^2.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"postcss": "^8.4.5",
"postcss-html": "^1.3.0",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.4",
"vite": "^2.7.2"
}
}