forked from accessibility-exchange/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.29 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
{
"name": "@accessibility-exchange/platform",
"private": true,
"type": "module",
"scripts": {
"build": "npm run props && vite build",
"dev": "vite",
"format": "prettier --write resources/**/*.css",
"lint:json": "eslint *.json database/seeders/data/*.json",
"lint:scripts": "eslint *.js resources/js/**/*.js",
"lint:styles": "stylelint resources/css/**/*.css",
"lint": "run-s lint:*",
"props": "node css-props-generator.js",
"postinstall": "husky && npm run build"
},
"lint-staged": {
"resources/css/**/*.css": [
"stylelint --fix",
"prettier --write"
],
"resources/js/**/*.js": [
"eslint --fix",
"prettier --write"
],
"*.php": [
"vendor/bin/pint"
],
"*.blade.php": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.0",
"@shufo/prettier-plugin-blade": "^1.11.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-fluid": "^2.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsonc": "^2.16.0",
"husky": "^9.0.11",
"laravel-vite-plugin": "^1.0.2",
"lint-staged": "^15.2.0",
"modern-css-reset": "^1.4.0",
"npm-run-all2": "^7.0.0",
"postcss": "^8.4.38",
"postcss-custom-media": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-logical": "^8.0.0",
"prettier": "^3.2.5",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"stylelint-plugin-logical-css": "^1.2.0",
"tailwindcss": "^3.4.1",
"tippy.js": "^6.3.7",
"vite": "^5.4.6",
"vite-plugin-full-reload": "^1.2.0",
"vite-plugin-manifest-sri": "^0.2.0",
"vite-plugin-static-copy": "^2.0.0"
},
"dependencies": {
"@vimeo/player": "^2.22.0",
"axios": "^1.7.4",
"infusion": "^4.7.1",
"luxon": "^3.5.0",
"wicg-inert": "^3.1.2"
}
}