formwork/panel/package.json

43 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",
"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",
2022-11-27 21:21:19 +01:00
"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",
2022-10-27 21:07:29 +02:00
"build:js": "rollup -c",
2022-10-27 23:35:32 +02:00
"watch:css": "onchange 'assets/scss/**/*.scss' -- yarn build:css",
"watch:js": "onchange 'assets/js/src/**/*.js' -- yarn build:js",
2021-07-23 16:33:55 +02:00
"lint:css": "stylelint './assets/scss/**/*.scss' --fix",
"lint:js": "eslint './assets/js/src/**' --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": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.34.0",
2020-05-07 16:04:05 +02:00
"onchange": "^7.0.2",
"postcss": "^8.4.19",
"rollup": "^2.79.0",
"sass": "^1.58.3",
"stylelint": "^14.16.1",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
2022-10-27 21:07:29 +02:00
"stylelint-scss": "^4.3.0"
2019-04-09 18:00:19 +02:00
}
2018-07-13 11:21:48 +02:00
}