-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·43 lines (43 loc) · 1.26 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
{
"name": "boilerplate-kirby",
"description": "Opininated Kirby 4 boilerplate with vite, sass and barba",
"author": "Arnaud Juracek",
"license": "MIT",
"main": "src/index.js",
"type": "module",
"scripts": {
"vite": "vite",
"start": "concurrently \"npm:server\" \"npm:vite\" -c yellow,green",
"server": "php -S localhost:8888 -t public ./kirby/router.php",
"build": "vite build",
"preview": "npm run build && npm run server",
"version": "npm run build && git add -f public/dist",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"concurrently": "^8.0.0",
"eslint": "8.x",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"glob": "^10.3.3",
"sass": "^1.59.3",
"stylelint": "^15.3.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.5.0",
"vite": "^5.0.0",
"vite-plugin-browser-sync": "^3.0.3",
"vite-plugin-kirby": "^5.0.0"
},
"dependencies": {
"@barba/core": "^2.10.0",
"lozad": "^1.16.0"
}
}