mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-24 01:32:25 +01:00
39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "formwork-panel",
|
|
"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": "yarn build:css && yarn build:js",
|
|
"build:css": "sass ./assets/scss/panel.scss:./assets/css/panel.min.css ./assets/scss/panel-dark.scss:./assets/css/panel-dark.min.css --style=compressed --no-source-map",
|
|
"build:js": "esbuild ./assets/js/src/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 './assets/scss/**/*.scss' --fix",
|
|
"lint:js": "eslint './assets/js/src/**' --fix"
|
|
},
|
|
"dependencies": {
|
|
"chartist": "^1.3.0",
|
|
"codemirror": "^5.65.11",
|
|
"sortablejs": "^1.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.17.18",
|
|
"eslint": "^8.40.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"
|
|
}
|
|
}
|