-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.71 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@acp3/cms",
"description": "The ACP3 CMS is a highly customizable and easy to use Web Content Management System based on PHP and MySQL.",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/ACP3/cms.git"
},
"author": "Tino Goratsch <mail@acp3-cms.net>",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://gitlab.com/ACP3/cms/issues"
},
"homepage": "https://www.acp3-cms.net",
"private": true,
"browserslist": [
"defaults and >= 1%",
"Firefox ESR"
],
"lint-staged": {
"!(*.min).{js,cjs,mjs}": "npm run eslint:fix",
"!(*.min).{css,scss}": "npm run css-lint:fix",
"!(*.min).{js,cjs,mjs,json,md,yml}": "npm run prettier:fix",
"{*.php,composer.{json,lock},phpstan.{neon,neon.dist}}": "docker compose run --no-deps --rm app sh -c \"composer run husky\""
},
"workspaces": [
"ACP3/Modules/ACP3/System",
"ACP3/Modules/ACP3/Cookieconsent",
"ACP3/Modules/ACP3/Filemanager",
"ACP3/Modules/ACP3/Wysiwygckeditor",
"ACP3/Modules/ACP3/Wysiwygtinymce"
],
"scripts": {
"build": "gulp",
"css-lint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .stylelintcache --rd",
"css-lint:fix": "npm run css-lint -- --fix",
"eslint": "eslint -c eslint.config.mjs --cache --cache-location=.eslintcache .",
"eslint:fix": "npm run eslint -- --fix",
"lint-all": "concurrently \"npm:prettier\" \"npm:css-lint\" \"npm:eslint\" --kill-others-on-fail --group",
"lint-all:fix": "concurrently \"npm:prettier:fix\" \"npm:css-lint:fix\" \"npm:eslint:fix\" --kill-others-on-fail --group",
"prepare": "husky",
"prettier": "prettier **/*.{js,cjs,mjs,json,md,yml} --check --cache",
"prettier:fix": "npm run prettier -- --write"
}
}