mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 17:24:38 +01:00
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"name": "formwork-panel",
|
|
"description": "Formwork CMS Administration Panel",
|
|
"author": "Giuseppe Criscione",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/getformwork/formwork.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/getformwork/formwork/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn build:css && yarn build:js",
|
|
"build:css": "sass ./src/scss/panel.scss:./assets/css/panel.min.css ./src/scss/panel-dark.scss:./assets/css/panel-dark.min.css --style=compressed --no-source-map",
|
|
"build:js": "esbuild ./src/js/main.js --outfile=./assets/js/app.min.js --bundle --format=iife --global-name=Formwork --target=es6 --minify",
|
|
"watch:css": "yarn build:css --watch",
|
|
"watch:js": "yarn build:js --watch",
|
|
"lint:css": "stylelint './src/scss/**/*.scss' --fix",
|
|
"lint:js": "eslint './src/js/**' --fix"
|
|
},
|
|
"dependencies": {
|
|
"chartist": "^1.3.0",
|
|
"codemirror": "^5.65.11",
|
|
"sortablejs": "^1.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^8.41.0",
|
|
"esbuild": "^0.17.18",
|
|
"eslint": "^8.40.0",
|
|
"globals": "^13.20.0",
|
|
"postcss": "^8.4.19",
|
|
"sass": "^1.62.1",
|
|
"stylelint": "^14.16.1",
|
|
"stylelint-config-idiomatic-order": "^9.0.0",
|
|
"stylelint-config-standard-scss": "^6.1.0",
|
|
"stylelint-order": "^6.0.1",
|
|
"stylelint-scss": "^4.7.0"
|
|
}
|
|
}
|