mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-22 00:25:26 +01:00
Bumps [codemirror](https://github.com/codemirror/CodeMirror) from 5.63.0 to 5.63.1. - [Release notes](https://github.com/codemirror/CodeMirror/releases) - [Changelog](https://github.com/codemirror/CodeMirror/blob/master/CHANGELOG.md) - [Commits](https://github.com/codemirror/CodeMirror/compare/5.63.0...5.63.1) --- updated-dependencies: - dependency-name: codemirror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.4 KiB
JSON
42 lines
1.4 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.63.1",
|
|
"sortablejs": "^1.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^20.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
"eslint": "^7.32.0",
|
|
"onchange": "^7.0.2",
|
|
"rollup": "^2.57.0",
|
|
"sass": "^1.42.1",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-idiomatic-order": "^8.1.0",
|
|
"stylelint-config-standard": "^22.0.0",
|
|
"stylelint-order": "^4.1.0",
|
|
"stylelint-scss": "^3.21.0",
|
|
"uglify-js": "^3.14.2"
|
|
}
|
|
}
|