-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
46 lines (46 loc) · 1.89 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
{
"name": "plone-mosaic",
"version": "3.2.0",
"description": "Mosaic Editor for Plone",
"license": "GPL-2.0-only",
"dependencies": {
"@patternslib/patternslib": "^9.9.16",
"@plone/mockup": "^5.1.14"
},
"devDependencies": {
"@patternslib/dev": "3.6.1",
"clean-css-cli": "5.6.3",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"sass": "1.77.6",
"sass-loader": "16.0.3"
},
"scripts": {
"build": "npm-run-all build:webpack build:css",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.js",
"build:stats": "NODE_ENV=production webpack --config webpack.config.js --json > stats.json",
"build:css": "npm-run-all css-compile css-minify",
"watch": "npm-run-all --parallel watch:webpack watch:scss",
"watch:webpack": "NODE_ENV=development webpack --config webpack.config.js --watch",
"start": "NODE_ENV=development webpack serve --config webpack.config.js",
"watch:scss": "nodemon --watch resources/scss/ --ext scss --exec \"npm run build:css\"",
"css-compile": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/scss/mosaic.scss:src/plone/app/mosaic/browser/static/mosaic.css",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output src/plone/app/mosaic/browser/static/mosaic.min.css src/plone/app/mosaic/browser/static/mosaic.css"
},
"browserslist": [
"defaults"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Plone Foundation",
"email": "[email protected]"
},
"homepage": "https://github.com/plone/mockup",
"repository": {
"type": "git",
"url": "https://github.com/plone/mockup.git"
}
}