-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.38 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
{
"private": true,
"devDependencies": {
"@_tw/themejson": "^0.1.2",
"@_tw/typography": "^0.4.1-2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@wordpress/eslint-plugin": "^9.3.0",
"@wordpress/stylelint-config": "^19.1.0",
"archiver": "^5.3.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"tailwind-safelist-generator": "^0.1.3",
"tailwindcss": "2.2.19"
},
"scripts": {
"development:frontend": "npx tailwindcss --postcss -i ./tailwind/tailwind.css -c ./tailwind/tailwind-frontend.config.js -o ./theme/style.css",
"development:editor": "npx tailwindcss --postcss -i ./tailwind/tailwind.css -c ./tailwind/tailwind-editor.config.js -o ./theme/style-editor.css",
"development": "run-p development:*",
"dev": "npm run development",
"watch:frontend": "npm run development:frontend -- --watch",
"watch:editor": "npm run development:editor -- --watch",
"watch": "run-p watch:*",
"production:frontend": "cross-env NODE_ENV=production npm run development:frontend -- --minify",
"production:editor": "cross-env NODE_ENV=production npm run development:editor -- --minify",
"production": "run-p production:*",
"prod": "npm run production",
"zip": "node scripts/zip.js wooden-heart",
"bundle": "run-s production zip"
}
}