-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.09 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
{
"name": "pgstencil-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "node --env-file-if-exists=.env --import tsx examples/login/src/dev.ts",
"dev:better-auth": "node --import tsx examples/better-auth/src/dev.ts",
"test:better-auth": "vitest run tests/integration/better-auth.test.ts tests/integration/better-auth-workers.test.ts tests/integration/better-auth-oauth.test.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"snapshot:update": "node --import tsx scripts/update-snapshots.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm format:check && pnpm typecheck && pnpm test",
"db:status": "tsx scripts/db.ts status",
"db:validate": "tsx scripts/db.ts validate",
"db:migrate": "tsx scripts/db.ts migrate",
"db:migration:create": "tsx scripts/db.ts create",
"db:schema": "tsx scripts/db.ts schema",
"db:types": "tsx scripts/db.ts types",
"db:verify": "tsx scripts/db.ts verify",
"db:reset": "tsx scripts/db.ts reset",
"db:stop": "tsx scripts/db.ts stop",
"db:gc": "tsx scripts/db.ts gc",
"packages:build": "node --import tsx scripts/build-packages.ts",
"packages:pack": "pnpm packages:build && pnpm --filter pgstencil --filter @pgstencil/auth --filter @pgstencil/stripe -r pack --pack-destination dist/packages",
"packages:verify": "pnpm packages:pack && node --import tsx scripts/verify-packages.ts"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/pg": "^8.15.0",
"@types/supertest": "^6.0.0",
"@types/turndown": "^5.0.0",
"esbuild": "^0.28.2",
"kysely-codegen": "^0.19.0",
"miniflare": "5.20260908.0-alpha",
"prettier": "^3.6.0",
"supertest": "^7.2.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0",
"wrangler": "^4.130.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/diffplug/pgstencil.git"
}
}