-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.42 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "git-fit",
"version": "1.68.2",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"scripts": {
"_prettier": "prettier \"**/*.{js,ts,tsx,json,md,css,html}\"",
"git:hook:precommit": "lint-staged --cwd .",
"git:hook:commit": "npx @commitlint/cli --edit",
"build:shared": "npm run build -w packages/shared",
"build:frontend": "npm run build -w apps/frontend",
"build:backend": "npm run build -w apps/backend",
"build:analytics": "npm run build -w scripts/analytics",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend && npm run prepare-build",
"prepare-build": "sh ./prepare-build.sh",
"lint:editor": "editorconfig-checker",
"lint:fs": "ls-lint",
"lint:type": "npx tsc --noEmit",
"lint:js": "npx eslint . --max-warnings=0 --no-warn-ignored",
"lint:format": "npm run _prettier -- --check",
"lint:trash": "knip",
"format": "npm run _prettier -- --write",
"lint": "concurrently \"npm:lint:*\" && npm run lint --workspaces",
"ci:prepare": "simple-git-hooks",
"prestart": "npm install --include=dev && npm run build",
"start": "cd apps/build/backend && npm run start"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/types": "19.0.3",
"@eslint/js": "9.9.0",
"@ls-lint/ls-lint": "2.3.0-beta.1",
"@stylistic/eslint-plugin": "2.6.2",
"@types/eslint": "8.56.11",
"@types/eslint__js": "8.42.3",
"@types/lint-staged": "13.3.0",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"concurrently": "8.2.2",
"danger": "12.3.3",
"editorconfig-checker": "5.1.8",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "50.0.1",
"eslint-plugin-perfectionist": "3.1.3",
"eslint-plugin-require-explicit-generics": "1.0.0",
"eslint-plugin-sonarjs": "1.0.4",
"eslint-plugin-unicorn": "55.0.0",
"globals": "15.9.0",
"knip": "5.27.2",
"lint-staged": "15.2.8",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"stylelint": "16.8.1",
"stylelint-config-recess-order": "5.0.1",
"stylelint-config-standard": "36.0.1",
"tsc-alias": "1.8.10",
"typescript": "5.5.4"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:type && npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
}
}