-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "mvlkss",
"private": true,
"author": {
"name": "Michael van Laar",
"email": "michael@van-laar.de",
"url": "https://michaelvanlaar.com/"
},
"scripts": {
"build": "npm run clean && webpack --mode production && npx -y hashup",
"clean": "rimraf assets",
"dev": "npm run clean && webpack --mode development --watch",
"dev-server": "concurrently --kill-others \"npm run dev\" \"npm run server\"",
"server": "php -S localhost:8000 kirby/router.php",
"utility-dependencies-update": "node -e \"console.log('==========================\\nUPDATING COMPOSER PACKAGES\\n==========================\\n')\" && composer update -o && composer normalize && node -e \"console.log('\\n\\n=====================\\nUPDATING NPM PACKAGES\\n=====================\\n')\" && ncu -u && npm install && npm audit fix",
"utility-dependencies-update-check": "node -e \"console.log('==========================\\nCHECKING COMPOSER PACKAGES\\n==========================\\n')\" && composer outdated && node -e \"console.log('\\n\\n=====================\\nCHECKING NPM PACKAGES\\n=====================\\n')\" && ncu",
"utility-git-branches-clean-up": "node ./utilities/git-branches-clean-up.js",
"utility-kirby-cache-prefill": "node ./utilities/kirby-cache-prefill.js"
},
"browserslist": [
"> 0.1%, last 2 versions, Firefox ESR, not dead"
],
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@prettier/plugin-php": "^0.22.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.12",
"@tailwindcss/typography": "^0.5.16",
"axios": "^1.8.2",
"babel-loader": "^10.0.0",
"browserslist": "^4.24.4",
"concurrently": "^9.1.2",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"mini-css-extract-plugin": "^2.9.2",
"npm-check-updates": "^17.1.15",
"playwright": "^1.51.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^6.0.1",
"tailwindcss": "^4.0.12",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"xml2js": "^0.6.2"
}
}