-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.21 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.21 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
{
"name": "figma-to-gutenberg-blocks",
"version": "1.0.0",
"description": "Figma plugin to convert designs to WordPress Gutenberg blocks + 11ty site",
"scripts": {
"dev": "npm-run-all --parallel css eleventy",
"css": "postcss src/static/css/tailwind.css --o _tmp/static/css/style.css --watch",
"eleventy": "eleventy --serve",
"debug": "set DEBUG=* & eleventy",
"build": "cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production postcss src/static/css/tailwind.css --o _site/static/css/style.css",
"build:plugin": "tsc --watch --preserveWatchOutput",
"build:plugin-once": "tsc"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@figma/plugin-typings": "^1.118.0",
"@tailwindcss/typography": "^0.3.1",
"alpinejs": "^2.6.0",
"autoprefixer": "^10.1.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.0",
"luxon": "^1.25.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.2",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.0.2",
"typescript": "^5.9.3"
}
}