-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.32 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier 'resources/**/*.{css,js,json,css,ts,tsx,vue}' '*.{js,css}' --write",
"lint": "pnpm lint:js && pnpm lint:style",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore"
},
"lint-staged": {
"*.{css,vue}": "stylelint",
"*.{js,vue}": "eslint"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/eslint-parser": "^7.22.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-rest-spread": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@tailwindcss/forms": "^0.5",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"axios": "^1.6.4",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tailwindcss": "^3.12.1",
"focus-visible": "^5.2.0",
"husky": "^8.0.3",
"laravel-vite-plugin": "^1.0.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"node-ray": "^1.21.0",
"postcss": "^8.4.24",
"postcss-custom-properties": "^13.2.0",
"postcss-focus-visible": "^9.0.1",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"prettier": "^3.2.5",
"prettier-eslint": "^15.0.1",
"prettier-plugin-tailwindcss": "^0.2.3",
"sass": "^1.70.0",
"stylelint": "^15.7.0",
"stylelint-config-standard": "^31.0.0",
"tailwindcss": "^3.4",
"vite": "^5.0.0",
"preline": "^2.4.1"
}
}