-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
50 lines (50 loc) · 2 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
{
"name": "@plone/plonetheme-barceloneta-base",
"description": "Plone Theme Barceloneta Resources",
"version": "3.2.2",
"files": [
"/scss",
"/plonetheme/barceloneta/theme/tinymce/*.css"
],
"repository": {
"type": "git",
"url": "[email protected]:plone/plonetheme.barceloneta.git"
},
"bugs": {
"url": "https://github.com/plone/plonetheme.barceloneta/issues",
"email": "[email protected]"
},
"homepage": "https://plone.org",
"license": "MIT",
"keywords": [
"plone",
"front-end",
"sass",
"css"
],
"devDependencies": {
"autoprefixer": "^10.4.20",
"clean-css-cli": "^5.6.3",
"nodemon": "^3.1.9",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"sass": "1.77.6",
"stylelint": "^16.14.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"tinymce": "^7.6.1"
},
"scripts": {
"watch": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
"build": "npm-run-all css-compile-main css-prefix-main css-minify-main copy-tinymce-ui-css",
"css-main": "npm-run-all css-compile-main css-prefix-main css-minify-main",
"css-compile-main": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css scss/barceloneta.scss:plonetheme/barceloneta/theme/css/barceloneta.css",
"css-prefix-main": "postcss --config postcss.config.js --replace \"plonetheme/barceloneta/theme/css/*.css\" \"!plonetheme/barceloneta/theme/css/*.min.css\"",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output plonetheme/barceloneta/theme/css/barceloneta.min.css plonetheme/barceloneta/theme/css/barceloneta.css",
"css-lint": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"copy-tinymce-ui-css": "cp \"node_modules/tinymce/skins/ui/oxide/content.css\" \"plonetheme/barceloneta/theme/tinymce/tinymce-ui-content.css\""
},
"dependencies": {
"bootstrap": "5.3.3"
}
}