-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.64 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.64 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
{
"name": "launchstack",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Launchstack monorepo root. Run package-level scripts via pnpm --filter <pkg>.",
"scripts": {
"build": "pnpm --filter @launchstack/web build",
"check": "eslint . && pnpm -r typecheck",
"dev": "pnpm --filter @launchstack/web dev",
"dev:next": "pnpm --filter @launchstack/web dev:next",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"preview": "pnpm --filter @launchstack/web preview",
"start": "pnpm --filter @launchstack/web start",
"test": "pnpm --filter @launchstack/web test",
"typecheck": "pnpm -r typecheck",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"postinstall": "echo 'postinstall: no-op'",
"db:push": "pnpm --filter @launchstack/web db:push",
"db:studio": "pnpm --filter @launchstack/web db:studio",
"db:backfill:versions": "pnpm --filter @launchstack/web db:backfill:versions",
"inngest:dev": "pnpm --filter @launchstack/web inngest:dev",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm --filter @launchstack/core build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/eslint": "^9.6.1",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.34.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.15.1"
}