formwork/panel/package.json

59 lines
2.2 KiB
JSON
Raw Normal View History

2018-07-13 11:21:48 +02:00
{
2023-12-03 15:08:58 +01:00
"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 --style=compressed --no-source-map",
2024-02-24 17:29:32 +01:00
"build:js": "tsc && esbuild ./src/ts/app.ts --outfile=./assets/js/app.min.js --bundle --format=iife --global-name=Formwork --target=es6 --minify",
2023-12-03 15:08:58 +01:00
"watch:css": "yarn build:css --watch",
"watch:js": "yarn build:js --watch",
2024-02-24 17:29:32 +01:00
"lint": "yarn lint:css && yarn lint:ts",
2023-12-03 15:08:58 +01:00
"lint:css": "prettier './src/scss/**/*.scss' --write && stylelint './src/scss/**/*.scss' --fix",
2024-02-24 17:29:32 +01:00
"lint:ts": "prettier './src/ts/**/*.ts' --write && eslint './src/ts/**/*.ts' --fix"
2023-12-03 15:08:58 +01:00
},
"dependencies": {
2024-10-15 00:43:51 +02:00
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language": "^6.10.3",
"@codemirror/view": "^6.34.1",
2023-12-03 15:08:58 +01:00
"chartist": "^1.3.0",
2024-10-15 00:43:51 +02:00
"prosemirror-commands": "^1.6.1",
"prosemirror-history": "^1.4.1",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.13.1",
"prosemirror-schema-list": "^1.4.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.34.3",
"sortablejs": "^1.15.3"
2023-12-03 15:08:58 +01:00
},
"devDependencies": {
2024-10-22 00:40:01 +02:00
"@eslint/js": "^9.13.0",
2024-02-24 17:29:32 +01:00
"@types/sortablejs": "^1.15.8",
2024-10-22 00:40:01 +02:00
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
2023-12-03 15:08:58 +01:00
"eslint-config-prettier": "^9.1.0",
2024-10-22 00:40:01 +02:00
"globals": "^15.11.0",
"postcss": "^8.4.45",
"prettier": "3.3.3",
"sass": "^1.77.8",
"stylelint": "^16.9.0",
2024-04-27 13:33:03 +02:00
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.5.1",
2024-10-22 00:40:01 +02:00
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
2023-12-03 15:08:58 +01:00
},
2024-06-23 15:15:06 +02:00
"packageManager": "yarn@4.3.1"
2018-07-13 11:21:48 +02:00
}