forked from understrap/understrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 4.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "elixir",
"version": "1.1.0",
"description": "WordPress Theme framework",
"main": "index.js",
"scripts": {
"bs": "browser-sync start --config src/build/browser-sync.config.js",
"css": "npm-run-all css-compile css-postcss css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --quiet src/sass/theme.scss:css/theme.css src/sass/custom-editor-style.scss:css/custom-editor-style.css",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output css/ --batch --batch-suffix \".min\" \"css/*.css\" \"!css/*.min.css\" \"!css/*rtl*.css\"",
"css-postcss": "postcss --config src/build/postcss.config.js --replace \"css/*.css\" \"!css/*.rtl*.css\" \"!css/*.min.css\"",
"css-bs4": "npm-run-all css-compile-bs4 css-postcss-bs4 css-minify-bs4",
"css-compile-bs4": "sass --style expanded --source-map --embed-sources --no-error-css --quiet src/sass/theme-bootstrap4.scss:css/theme-bootstrap4.css src/sass/custom-editor-style-bootstrap4.scss:css/custom-editor-style-bootstrap4.css",
"css-minify-bs4": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output css/ --batch --batch-suffix \".min\" \"css/*.css\" \"!css/*.min.css\" \"!css/*rtl*.css\"",
"css-postcss-bs4": "postcss --config src/build-bootstrap4/postcss.config.js --replace \"css/*.css\" \"!css/*.rtl*.css\" \"!css/*.min.css\"",
"js": "npm-run-all js-compile js-minify",
"js-compile": "rollup --config src/build/rollup.config.js --sourcemap",
"js-minify": "terser --config-file src/build/terser.config.json --output js/theme.min.js js/theme.js",
"js-bs4": "npm-run-all js-compile-bs4 js-minify-bs4",
"js-compile-bs4": "rollup --config src/build-bootstrap4/rollup.config.js --sourcemap",
"js-minify-bs4": "terser --config-file src/build-bootstrap4/terser.config.json --output js/theme-bootstrap4.min.js js/theme-bootstrap4.js",
"watch": "npm-run-all --parallel watch-run-*",
"watch-bs": "npm-run-all --parallel bs watch-run-*",
"watch-run-css": "nodemon --watch src/sass/ --ext scss --exec \"npm-run-all css\"",
"watch-run-js": "nodemon --watch src/js/ --ext js --exec \"npm-run-all js\"",
"copy-assets": "node src/build/copy-assets.js",
"dist": "npm-run-all --parallel css js css-bs4 js-bs4",
"dist-build": "node src/build/dist-build.js",
"dist-clean": "node src/build/dist-clean.js"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/elixir/elixir.git"
},
"keywords": [
"wordpress",
"theme",
"framework",
"bootstrap",
"underscores"
],
"author": "The Elixir Authors (https://github.com/elixir/elixir/graphs/contributors)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/elixir/elixir/issues"
},
"homepage": "https://elixir.com",
"dependencies": {
"@fancyapps/ui": "^4.0.27",
"aos": "^3.0.0-beta.6",
"datatables.net-bs5": "^1.12.1",
"datatables.net-buttons-bs5": "^2.2.3",
"datatables.net-responsive-bs5": "^2.3.0",
"datatables.net-searchbuilder-bs5": "^1.3.4",
"datatables.net-searchpanes-bs5": "^2.0.2",
"flickity": "^3.0.0",
"flickity-fade": "^2.0.0",
"masonry-layout": "^4.2.2",
"mixitup": "^3.3.1",
"sticky-js": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.17.12",
"@popperjs/core": "^2.11.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"autoprefixer": "^10.4.0",
"bootstrap": "^5.1.3",
"bootstrap4": "npm:bootstrap@^4.6.0",
"browser-sync": "^2.27.7",
"browserslist": "^4.18.1",
"caniuse-lite": "^1.0.30001283",
"clean-css-cli": "^5.4.2",
"del": "^6.0.0",
"font-awesome": "^4.7.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"postcss-understrap-palette-generator": "git+https://github.com/understrap/postcss-understrap-palette-generator.git",
"rollup": "^2.60.2",
"sass": "^1.44.0",
"terser": "^5.10.0"
}
}