-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.84 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.84 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
45
46
47
48
49
50
51
{
"name": "sesh",
"version": "1.0.0",
"description": "Sesh is a mono-repo for managing PA/QV documentation. It includes setup for ESLint, Prettier, Husky hooks, branching rules, GitHub workflows (CI/CD), and issue/PR templates. This serves as the foundation for future implementations (React/Laravel) with Keycloak integration.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint apps --ext .js,.ts --no-error-on-unmatched-pattern",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky",
"precommit:frontend": "npm --prefix apps/frontend run precommit",
"precommit:backend": "composer --working-dir=apps/backend run precommit"
},
"lint-staged": {
"apps/frontend/**/*.{ts,tsx,js,jsx}": [
"npm --prefix apps/frontend run eslint:fix --",
"npm --prefix apps/frontend run prettier:fix"
],
"apps/frontend/**/*.{css,pcss}": [
"npm --prefix apps/frontend run stylelint:fix",
"npm --prefix apps/frontend run prettier:fix"
],
"apps/backend/**/*.php": [
"composer --working-dir=apps/backend pint -- --dirty",
"composer --working-dir=apps/backend phpstan -- --no-progress"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.6.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"markdownlint": "^0.38.0",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0"
},
"dependencies": {
"eslint-plugin-react": "^7.37.5"
}
}