-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "threadjs",
"private": true,
"type": "module",
"engines": {
"node": "22.15.x",
"npm": "10.9.x"
},
"workspaces": [
"apps/*",
"packages/*"
],
"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",
"lint:editorconfig": "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"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@commitlint/types": "19.8.0",
"@eslint/js": "9.25.1",
"@ls-lint/ls-lint": "2.3.0",
"@stylistic/eslint-plugin": "4.2.0",
"@types/lint-staged": "13.3.0",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"concurrently": "9.1.2",
"danger": "13.0.4",
"editorconfig-checker": "6.0.1",
"eslint": "9.25.1",
"eslint-import-resolver-typescript": "4.3.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.11",
"eslint-plugin-perfectionist": "4.12.3",
"eslint-plugin-require-explicit-generics": "1.0.0",
"eslint-plugin-sonarjs": "3.0.2",
"eslint-plugin-unicorn": "59.0.0",
"globals": "16.0.0",
"knip": "5.51.1",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"simple-git-hooks": "2.13.0",
"stylelint": "16.19.1",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard": "38.0.0",
"tsc-alias": "1.8.15",
"typescript": "5.8.3"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:type && npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
}
}