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",
|
2024-10-06 16:49:44 +02:00
|
|
|
"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-11-05 22:52:10 +01:00
|
|
|
"format": "yarn format:css && yarn format:ts",
|
|
|
|
"format:css": "prettier './src/scss/**/*.scss' --write",
|
|
|
|
"format:ts": "prettier './src/ts/**/*.ts' --write",
|
2024-02-24 17:29:32 +01:00
|
|
|
"lint": "yarn lint:css && yarn lint:ts",
|
2024-11-05 22:52:10 +01:00
|
|
|
"lint:css": "stylelint './src/scss/**/*.scss' --fix",
|
|
|
|
"lint:ts": "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-11-01 17:47:51 +00:00
|
|
|
"prosemirror-commands": "^1.6.2",
|
2024-10-15 00:43:51 +02:00
|
|
|
"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",
|
2024-11-05 22:21:51 +01:00
|
|
|
"prosemirror-view": "~1.34.3",
|
2024-10-01 17:25:34 +00:00
|
|
|
"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",
|
2024-09-08 00:05:00 +00:00
|
|
|
"postcss": "^8.4.45",
|
2024-09-07 23:54:47 +00:00
|
|
|
"prettier": "3.3.3",
|
2024-12-01 17:54:12 +00:00
|
|
|
"sass": "^1.81.0",
|
2024-10-02 20:41:27 +00:00
|
|
|
"stylelint": "^16.9.0",
|
2024-04-27 13:33:03 +02:00
|
|
|
"stylelint-config-standard-scss": "^13.1.0",
|
2024-01-01 17:24:01 +00:00
|
|
|
"stylelint-order": "^6.0.4",
|
2024-09-07 23:55:36 +00:00
|
|
|
"stylelint-scss": "^6.5.1",
|
2024-10-22 00:40:01 +02:00
|
|
|
"typescript": "^5.6.3",
|
2024-11-01 17:48:09 +00:00
|
|
|
"typescript-eslint": "^8.12.2"
|
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
|
|
|
}
|