-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.59 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
66
67
68
69
70
71
72
{
"name": "press-wind-fse",
"version": "0.0.1",
"description": "Wordpress theme starter with Tailwind CSS and Vite JS for FSE",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "cross-env APP_ENV=development VITE_CJS_TRACE=true bunx vite & bun run watch:editor",
"build": "APP_ENV=production bunx vite build && bun run build:editor && bun run build:admin",
"dev:admin": "cross-env APP_ENV=development bunx vite --config admin/vite.config.js",
"build:admin": "APP_ENV=production bunx vite build --config admin/vite.config.js",
"watch:editor": "APP_ENV=development IS_EDITOR=true node_modules/.bin/postcss --watch --verbose --no-map assets/css/styles.css -o style-editor.css",
"build:editor": "NODE_ENV=production IS_EDITOR=true node_modules/.bin/postcss assets/css/styles.css -o style-editor.css -m",
"favicon": "node js-helpers/faviconGenerator.mjs",
"php:lint": "./vendor/bin/duster lint",
"php:fix": "./vendor/bin/duster fix"
},
"author": "Faramaz Patrick<info@goodmotion.fr>",
"license": "ISC",
"trustedDependencies": [
"sharp"
],
"devDependencies": {
"@_tw/themejson": "0.2.0",
"@biomejs/biome": "^1.8.3",
"@tailwindcss/forms": "^0.5.7",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-legacy": "5.4.1",
"@vitejs/plugin-react": "4.3.1",
"@wordpress/browserslist-config": "6.5.0",
"@wordpress/components": "28.5.0",
"@wordpress/compose": "7.5.0",
"@wordpress/data": "10.5.0",
"@wordpress/edit-post": "8.5.0",
"@wordpress/element": "6.5.0",
"@wordpress/eslint-plugin": "20.2.0",
"@wordpress/i18n": "5.5.0",
"@wordpress/icons": "10.5.0",
"@wordpress/plugins": "7.5.0",
"@wordpress/scripts": "28.5.0",
"@wordpress/stylelint-config": "22.5.0",
"autoprefixer": "^10.4.20",
"babel-preset-env": "^1.7.0",
"browserslist": "^4.23.3",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"favicons": "^7.2.0",
"lightningcss": "^1.26.0",
"lightningcss-cli": "^1.26.0",
"postcss": "8.4.41",
"postcss-cli": "11.0.0",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.0.0",
"postcss-url": "^10.1.3",
"sharp": "^0.33.4",
"tailwindcss": "3.4.9",
"terser": "5.31.5",
"vite": "5.4.0",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-live-reload": "3.0.3"
},
"dependencies": {
"@meilisearch/instant-meilisearch": "1.0.0",
"algoliasearch": "4.24.0",
"instantsearch.css": "^8.4.0",
"instantsearch.js": "4.73.4",
"tailwind-scrollbar": "^3.1.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}