-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.56 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
{
"name": "press-wind",
"version": "2.0.0",
"description": "Wordpress theme starter with Tailwind CSS and Vite JS for FSE",
"main": "main.js",
"type": "module",
"author": "Faramaz Patrick<info@goodmotion.fr>",
"license": "ISC",
"scripts": {
"dev": "cross-env APP_ENV=development vite & npm run watch:editor",
"build": "APP_ENV=production vite build && npm run build:editor",
"dev:admin": "cross-env APP_ENV=development vite --config admin/vite.config.js",
"build:admin": "APP_ENV=production vite build --config admin/vite.config.js",
"watch:editor": "APP_ENV=development IS_EDITOR=true node_modules/.bin/postcss -w --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",
"favicon": "node js-helpers/faviconGenerator.mjs",
"php:lint": "./vendor/bin/duster lint",
"php:fix": "./vendor/bin/duster fix"
},
"trustedDependencies": [
"sharp"
],
"devDependencies": {
"@_tw/themejson": "0.2.0",
"@biomejs/biome": "^1.4.1",
"@tailwindcss/forms": "^0.5.7",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitejs/plugin-legacy": "5.2.0",
"@vitejs/plugin-react": "4.2.1",
"@wordpress/browserslist-config": "5.31.0",
"@wordpress/components": "25.14.0",
"@wordpress/compose": "6.25.0",
"@wordpress/data": "9.18.0",
"@wordpress/edit-post": "7.25.0",
"@wordpress/element": "5.25.0",
"@wordpress/eslint-plugin": "17.5.0",
"@wordpress/i18n": "4.48.0",
"@wordpress/icons": "9.39.0",
"@wordpress/plugins": "6.16.0",
"@wordpress/scripts": "26.19.0",
"@wordpress/stylelint-config": "21.31.0",
"autoprefixer": "^10.4.16",
"babel-preset-env": "^1.7.0",
"browserslist": "^4.22.2",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"favicons": "^7.1.4",
"lightningcss": "^1.22.1",
"lightningcss-cli": "^1.22.1",
"postcss": "8.4.32",
"postcss-cli": "11.0.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.3.0",
"postcss-url": "^10.1.3",
"sharp": "^0.33.1",
"tailwindcss": "3.3.7",
"terser": "5.26.0",
"vite": "5.0.10",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-live-reload": "3.0.3"
},
"dependencies": {},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}