-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.46 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.46 KB
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
{
"name": "radicle",
"private": true,
"browserslist": [
"extends @roots/browserslist-config"
],
"engines": {
"node": ">=22.12.0"
},
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"translate": "npm run translate:pot && npm run translate:update",
"translate:pot": "wp i18n make-pot . ./resources/lang/radicle.pot --include=\"app,config,resources,public/dist/js\" --domain=\"radicle\"",
"translate:update": "for file in ./resources/lang/*.po; do wp i18n update-po ./resources/lang/radicle.pot $file; done",
"translate:compile": "npm run translate:mo && npm run translate:js",
"translate:js": "wp i18n make-json ./resources/lang --pretty-print",
"translate:mo": "wp i18n make-mo ./resources/lang ./resources/lang"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@roots/vite-plugin": "^1.2.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.14",
"@wordpress/icons": "^10.32.0",
"laravel-vite-plugin": "^2.0.1",
"prettier": "^3.8.1",
"prettier-plugin-blade": "^2.1.21",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.0.17",
"vite": "^7.1.9"
},
"dependencies": {
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"alpinejs": "^3.15.0",
"aos": "^2.3.4",
"swiper": "^12.1.0"
}
}