formwork/panel/package.json

42 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-13 11:21:48 +02:00
{
2022-11-27 21:21:19 +01:00
"name": "formwork-panel",
2019-04-09 18:00:19 +02:00
"description": "Formwork CMS Administration Panel",
"author": "Giuseppe Criscione",
"license": "MIT",
2023-05-20 17:26:37 +02:00
"type": "module",
2019-04-09 18:00:19 +02:00
"repository": {
"type": "git",
2019-05-13 13:03:58 +02:00
"url": "git+https://github.com/getformwork/formwork.git"
2019-04-09 18:00:19 +02:00
},
"bugs": {
2019-05-13 13:03:58 +02:00
"url": "https://github.com/getformwork/formwork/issues"
2019-04-09 18:00:19 +02:00
},
"scripts": {
2022-10-27 23:35:32 +02:00
"build": "yarn build:css && yarn build:js",
2023-05-20 17:59:36 +02:00
"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",
2023-05-06 14:01:24 +02:00
"watch:css": "yarn build:css --watch",
"watch:js": "yarn build:js --watch",
2023-05-20 17:59:36 +02:00
"lint:css": "stylelint './src/scss/**/*.scss' --fix",
"lint:js": "eslint './src/js/**' --fix"
},
2019-04-26 15:10:27 +02:00
"dependencies": {
"chartist": "^1.3.0",
"codemirror": "^5.65.11",
"sortablejs": "^1.15.0"
2019-04-26 15:10:27 +02:00
},
"devDependencies": {
2023-05-20 17:26:37 +02:00
"@eslint/js": "^8.41.0",
2023-05-06 14:01:24 +02:00
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
2023-05-20 17:26:37 +02:00
"globals": "^13.20.0",
"postcss": "^8.4.19",
2023-05-06 14:01:24 +02:00
"sass": "^1.62.1",
"stylelint": "^14.16.1",
"stylelint-config-idiomatic-order": "^9.0.0",
2023-05-06 14:01:24 +02:00
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.7.0"
2019-04-09 18:00:19 +02:00
}
2018-07-13 11:21:48 +02:00
}