-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.37 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "prodkt",
"version": "0.0.1",
"private": true,
"description": "A comprehensive, opinionated monorepo for Prodkt",
"license": "MIT",
"author": "Bryan Funk",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"packages/editor/*"
],
"scripts": {
"commit": "git-cz",
"format": "bun format:write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "eslint . --max-warnings 0",
"lint:md": "markdownlint \"**/*.md\" --dot --ignore node_modules --ignore .changeset",
"lint:spell": "cspell \"**\" --gitignore --dot --no-progress --cache --unique ",
"prepare": "husky",
"release": "turbo run build lint typecheck && changeset version && changeset publish",
"reset:changelog": "bun run rm -rf */**/CHANGELOG.md",
"typecheck": "tsc",
"update:workspace": "bun run ./scripts/update-workspace"
},
"lint-staged": {
"*": [
"cspell --no-must-find-files",
"prettier --list-different"
],
"**/*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint"
],
"**/*.{md,mdx}": [
"markdownlint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"supabase": "^1.200.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@playwright/test": "^1.45.2",
"@prodkt/eslint": "workspace:*",
"@prodkt/tsconfig": "workspace:*",
"@types/bun": "latest",
"@types/eslint": "^9.6.1",
"@types/node": "^22.6.1",
"@types/yargs": "^17.0.33",
"commitizen": "^4.3.0",
"cspell": "^8.11.0",
"eslint": "^9.7.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"pkg-types": "^1.2.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^2.5.1",
"turbo": "^2.1.3",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]",
"trustedDependencies": [
"@sentry/cli",
"es5-ext",
"esbuild",
"puppeteer",
"sharp",
"supabase"
]
}