Where-in-the-World-is-Ben/package.json

24 lines
710 B
JSON
Raw Normal View History

2022-08-23 19:11:43 +00:00
{
"private": true,
"scripts": {
"dev": "vite",
2022-11-30 19:09:17 +00:00
"build": "vite build",
"lint": "npm run lint:php; npm run lint:css",
"lint:fix": "npm run lint:php:fix; npm run lint:css:fix",
"lint:php": "./vendor/bin/phpcs",
"lint:php:fix": "./vendor/bin/phpcbf",
"lint:css": "npx stylelint ./public/css/app.css",
"lint:css:fix": "npm run lint:css -- --fix"
2022-08-23 19:11:43 +00:00
},
"devDependencies": {
"axios": "^0.27",
"laravel-vite-plugin": "^0.5.0",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
2022-11-30 19:09:17 +00:00
"stylelint": "^14.15.0",
"stylelint-config-standard": "^29.0.0",
2022-08-23 19:11:43 +00:00
"vite": "^3.0.0"
2022-11-30 19:09:17 +00:00
},
"dependencies": {}
2022-08-23 19:11:43 +00:00
}