-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.47 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.47 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
67
68
69
70
71
72
{
"name": "creatorem-saas-kit",
"version": "1.0.0",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=v20"
},
"homepage": "https://creatorem.com",
"author": {
"url": "https://creatorem.com",
"name": "Creatorem"
},
"scripts": {
"build": "turbo build --cache-dir=.turbo",
"clean": "git clean -xdf node_modules dist .next",
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check . && pnpm run docs:check",
"typecheck": "turbo typecheck --affected --cache-dir=.turbo",
"analyze": "turbo analyze --cache-dir=.turbo",
"test": "turbo test --cache-dir=.turbo",
"syncpack:list": "pnpm dlx syncpack list-mismatches",
"syncpack:fix": "pnpm dlx syncpack fix-mismatches",
"docs:check": "pnpm --filter creatorem docs:check",
"supabase:start": "supabase status || supabase start",
"supabase:stop": "supabase stop",
"supabase:test": "supabase db test",
"db:reset": "pnpm exec creatorem generate-sql && supabase db reset && node tooling/scripts/src/bootstrap-planoby-dev-reset.mjs",
"supabase:deploy": "pnpm exec creatorem generate-sql && supabase link --project-ref $SUPABASE_PROJECT_REF && supabase db push",
"db:types": "supabase gen types typescript --local > kit/db/core/src/database.types.ts && pnpm run --filter @kit/drizzle drizzle:pull",
"supabase:db:dump:local": "supabase db dump --local --data-only",
"detect-untranslated": "tsx tooling/scripts/src/detect-untranslated-text.ts"
},
"packageManager": "pnpm@10.28.0",
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-is": "19.1.0",
"rimraf": "3.0.2",
"lightningcss": "1.30.1"
}
},
"dependencies": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@kit/tsconfig": "workspace:*",
"@manypkg/cli": "^0.23.0",
"@t3-oss/env-core": "^0.13.8",
"@testing-library/jest-dom": "^6.7.0",
"@turbo/gen": "^2.5.5",
"@types/jest": "^29.5.14",
"@types/minimatch": "3.0.5",
"@types/react": "~19.1.10",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"supabase": "^2.51.0",
"ts-jest": "^29.4.1",
"turbo": "^2.5.5",
"@creatorem/cli": "workspace:*",
"typescript": "~5.9.2",
"zod": "^3.25.76"
}
}