forked from passle/passle-sync-wordpress-demo-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.81 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
{
"name": "passle-sync-wordpress-demo-theme",
"description": "Passle Sync Demo is a theme for Wordpress which makes use of the [Passle Sync](https://github.com/passle/passle-sync-wordpress) plugin.",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"init": "gulp init",
"build": "gulp buildZip",
"production:css-app": "tailwindcss -i \"./resources/css/app.css\" -o \"./css/app.css\" --postcss --minify",
"production:css-editor": "tailwindcss -i \"./resources/css/editor-style.css\" -o \"./css/editor-style.css\" --postcss --minify",
"production:js": "esbuild \"./resources/js/app.js\" --bundle --outfile=\"./js/app.js\" --minify",
"dev:css-app": "tailwindcss -i \"./resources/css/app.css\" -o \"./css/app.css\" --postcss",
"dev:css-editor": "tailwindcss -i \"./resources/css/editor-style.css\" -o \"./css/editor-style.css\" --postcss",
"dev:js": "esbuild \"./resources/js/app.js\" --bundle --outfile=\"./js/app.js\"",
"watch:css-app": "tailwindcss -i \"./resources/css/app.css\" -o \"./css/app.css\" --postcss --watch",
"watch:css-editor": "tailwindcss -i \"./resources/css/editor-style.css\" -o \"./css/editor-style.css\" --postcss --watch",
"watch:js": "esbuild \"./resources/js/app.js\" --bundle --outfile=\"./js/app.js\" --watch",
"production": "cross-env NODE_ENV=production concurrently \"npm run production:css-app\" \"npm run production:css-editor\" \"npm run production:js\"",
"dev": "cross-env NODE_ENV=development concurrently \"npm run dev:css-app\" \"npm run dev:css-editor\" \"npm run dev:js\"",
"watch": "cross-env NODE_ENV=development concurrently \"npm run watch:css-app\" \"npm run watch:css-editor\" \"npm run watch:js\"",
"browser-sync": "cross-env NODE_ENV=development browser-sync start --proxy \"passle-demo.test\" --host=\"passle-demo.test\" --no-inject-changes --files=\"./\"",
"watch-sync": "concurrently \"npm run browser-sync\" \"npm run watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/passle/passle-sync-wordpress-demo-theme.git"
},
"author": "Passle",
"license": "MIT",
"bugs": {
"url": "https://github.com/passle/passle-sync-wordpress-demo-theme/issues"
},
"homepage": "https://github.com/passle/passle-sync-wordpress-demo-theme#readme",
"devDependencies": {
"@jeffreyvr/tailwindcss-tailpress": "^2.0.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"autoprefixer": "^10.4.0",
"browser-sync": "^2.26.14",
"concurrently": "^6.2.1",
"cross-env": "^6.0.3",
"esbuild": "^0.12.24",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-zip": "^5.1.0",
"postcss": "^8.4.4",
"postcss-import": "^14.0.0",
"postcss-nested": "^5.0.3",
"postcss-nested-ancestors": "^2.0.0",
"resolve-url-loader": "^3.1.2",
"tailwindcss": "^3.1.2"
}
}