-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.87 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
{
"name": "mvlkss",
"private": true,
"author": {
"name": "Michael van Laar",
"email": "[email protected]",
"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 && npx socket optimize",
"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.7",
"@babel/preset-env": "^7.26.7",
"@prettier/plugin-php": "^0.22.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"babel-loader": "^9.2.1",
"browserslist": "^4.24.4",
"concurrently": "^9.1.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"mini-css-extract-plugin": "^2.9.2",
"npm-check-updates": "^17.1.14",
"playwright": "^1.50.1",
"postcss": "^8.5.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^6.0.1",
"tailwindcss": "^4.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"xml2js": "^0.6.2"
},
"overrides": {
"aggregate-error": "npm:@socketregistry/aggregate-error@^1",
"function-bind": "npm:@socketregistry/function-bind@^1",
"has": "npm:@socketregistry/has@^1",
"indent-string": "npm:@socketregistry/indent-string@^1",
"is-core-module": "npm:@socketregistry/is-core-module@^1",
"object-assign": "npm:@socketregistry/object-assign@^1",
"path-parse": "npm:@socketregistry/path-parse@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
"safer-buffer": "npm:@socketregistry/safer-buffer@^1",
"shell-quote": "npm:shell-quote@^1"
}
}