mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 17:24:38 +01:00
Bumps [uglify-js](https://github.com/mishoo/UglifyJS) from 3.13.8 to 3.13.9. - [Release notes](https://github.com/mishoo/UglifyJS/releases) - [Commits](https://github.com/mishoo/UglifyJS/compare/v3.13.8...v3.13.9) --- updated-dependencies: - dependency-name: uglify-js dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "formwork-admin",
|
|
"description": "Formwork CMS Administration Panel",
|
|
"author": "Giuseppe Criscione",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/getformwork/formwork.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/getformwork/formwork/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:css && npm run build:js",
|
|
"build:css": "sass ./assets/scss/admin.scss:./assets/css/admin.min.css ./assets/scss/admin-dark.scss:./assets/css/admin-dark.min.css --style=compressed --no-source-map",
|
|
"build:js": "rollup -c && uglifyjs assets/js/app.min.js -c -m -o assets/js/app.min.js --timings",
|
|
"watch:css": "onchange 'assets/scss/**/*.scss' -- npm run build:css",
|
|
"watch:js": "onchange 'assets/js/src/**/*.js' -- npm run build:js",
|
|
"lint:css": "stylelint ./assets/scss/**/*.scss --fix",
|
|
"lint:js": "eslint ./assets/js/src/** --fix"
|
|
},
|
|
"dependencies": {
|
|
"chartist": "^0.11.4",
|
|
"codemirror": "^5.61.1",
|
|
"sortablejs": "^1.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^19.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
"eslint": "^7.27.0",
|
|
"onchange": "^7.0.2",
|
|
"rollup": "^2.50.6",
|
|
"sass": "^1.34.1",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-standard": "^22.0.0",
|
|
"stylelint-order": "^4.1.0",
|
|
"uglify-js": "^3.13.9"
|
|
}
|
|
}
|