-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 3.07 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 3.07 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
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
{
"name": "strt-theme",
"version": "1.0.0",
"private": true,
"description": "Тема для Старт.",
"author": "Veks <oleg@isvek.ru>",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"bootstrap-css-build": "npm-run-all --sequential bootstrap-css-compile bootstrap-css-minify",
"bootstrap-css-compile": "sass --style expanded --source-map --embed-sources src/scss/bootstrap/bootstrap.scss:assets/css/bootstrap.css",
"bootstrap-css-minify": "sass --style compressed --source-map --embed-sources assets/css/bootstrap.css:assets/css/bootstrap.min.css",
"bootstrap-css-watch": "nodemon --watch src/scss/bootstrap/ --ext scss --exec \"npm run bootstrap-css-build\"",
"bootstrap-editor-css-build": "npm-run-all --parallel bootstrap-editor-css-compile bootstrap-editor-css-minify",
"bootstrap-editor-css-compile": "sass --style expanded --source-map --embed-sources src/scss/bootstrap/bootstrap-editor.scss:assets/css/bootstrap-editor.css",
"bootstrap-editor-css-minify": "sass --style compressed --source-map --embed-sources assets/css/bootstrap-editor.css:assets/css/bootstrap-editor.min.css",
"bootstrap-editor-css-watch": "nodemon --watch src/scss/bootstrap/ --ext scss --exec \"npm run bootstrap-editor-css-build\"",
"fonts-css-build": "npm-run-all --sequential fonts-css-compile fonts-css-minify",
"fonts-css-compile": "sass --style expanded --source-map --embed-sources src/scss/bootstrap/fonts.scss:assets/css/fonts.css",
"fonts-css-minify": "sass --style compressed --source-map --embed-sources assets/css/fonts.css:assets/css/fonts.min.css",
"app-js-build": "npm-run-all --parallel app-js-compile app-js-minify",
"app-js-compile": "rollup --config src/build/rollup.app.js --bundleConfigAsCjs",
"app-js-minify": "terser --compress passes=2 --source-map --output assets/js/app.min.js assets/js/app.js",
"app-js-watch": "nodemon --watch src/js/app/ --ext js --exec \"npm run app-js-build\"",
"npm-check-updates": "npx npm-check-updates",
"ncu-updates": "ncu -u",
"npm-install": "npm install",
"npm-install-legacy-peer-deps": "npm install --legacy-peer-deps",
"npm-cache-clean": "npm cache clean --force",
"help": "rollup --help"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.27.2",
"@babel/runtime": "^7.27.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@wordpress/base-styles": "^6.2.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"clean-css": "^5.3.3",
"clsx": "^2.1.1",
"nodemon": "^3.1.10",
"npm-check-updates": "^18.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^4.40.2",
"rollup-plugin-polyfill-node": "^0.13.0",
"sass": "^1.77.6",
"terser": "^5.39.2"
},
"dependencies": {
"core-js": "^3.42.0",
"regenerator-runtime": "^0.14.1"
}
}