-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "janna-monorepo",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build --filter=@jannajs/lint --filter=@jannajs/git-guards",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "eslint --flag unstable_ts_config .",
"lint:fix": "eslint --flag unstable_ts_config --fix .",
"test": "vitest",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.9"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/types": "catalog:",
"@eslint-react/eslint-plugin": "catalog:",
"@jannajs/git-guards": "workspace:*",
"@jannajs/lint": "workspace:*",
"@jannajs/tsconfig": "workspace:*",
"@next/eslint-plugin-next": "catalog:",
"@prettier/plugin-xml": "catalog:",
"@types/node": "^20.14.11",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-react-refresh": "catalog:",
"eslint-plugin-tailwindcss": "catalog:",
"husky": "catalog:",
"jiti": "^2.3.3",
"lint-staged": "catalog:",
"turbo": "^2.1.3",
"typescript": "catalog:",
"vitest": "^2.1.8"
},
"lint-staged": {
"*": "eslint --flag unstable_ts_config --fix"
}
}