-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.26 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wesley",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Everyone generates GraphQL from databases. Wesley generates databases from GraphQL. One schema → SQL/migrations/types/Zod + Supabase RLS/Realtime/Storage.",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"website:full-preview": "pnpm lint && pnpm test && pnpm --filter wesley-website build && pnpm --filter wesley-website preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preflight": "node scripts/preflight.mjs",
"verify:realization": "node packages/wesley-host-node/bin/wesley.mjs verify-realization --tracked",
"lint:docs-whitespace": "node scripts/lint-docs-whitespace.mjs",
"lint:docs-truth": "node scripts/check-doc-truth.mjs",
"tasks:update": "node scripts/tasks-update.mjs",
"prepare": "bash scripts/install-hooks.sh",
"setup:bats-plugins": "bash scripts/setup-bats-plugins.sh",
"format": "prettier --write .",
"format:check": "prettier --check .",
"bootstrap": "pnpm install && pnpm run preflight && pnpm run test",
"test:ci:local": "bash scripts/test-ci-locally.sh",
"validate": "pnpm lint && pnpm format:check && pnpm test",
"generate:example": "cd test/fixtures/examples && node ../../../packages/wesley-host-node/bin/wesley.mjs generate --schema ecommerce.graphql --emit-bundle --out-dir out --allow-dirty",
"clean": "node scripts/clean.mjs",
"smoke:postgres-fixture": "bash scripts/smoke/postgres-fixture.sh",
"smoke:holmes-ops": "bash scripts/smoke/holmes-ops-pgtap.sh",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:test": "docker-compose run pgtap",
"wesley": "node packages/wesley-host-node/bin/wesley.mjs",
"meta:fix-packages": "node scripts/fix-package-metadata.mjs",
"ci": "pnpm validate && pnpm generate:example && node packages/wesley-host-node/bin/wesley.mjs validate-bundle --bundle test/fixtures/examples/.wesley --schemas schemas/"
},
"keywords": [
"graphql",
"sql",
"database",
"migrations",
"supabase",
"schema",
"codegen",
"postgresql",
"schema-first"
],
"author": "Wesley Authors <oss@flyingrobots.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flyingrobots/wesley.git"
},
"bugs": {
"url": "https://github.com/flyingrobots/wesley/issues"
},
"homepage": "https://github.com/flyingrobots/wesley#readme",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.1.14",
"flatted": "3.4.2",
"ts-morph>minimatch": ">=10.2.3",
"js-yaml@>=4.0.0": ">=4.1.1",
"markdown-it@>=13.0.0": ">=14.1.1"
}
},
"dependencies": {
"@mantine/hooks": "^8.3.5",
"@supabase/pg-parser": "^0.1.7",
"vite": "^7.1.12"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "1.58.2",
"autoprefixer": "^10.4.21",
"dependency-cruiser": "17.3.8",
"eslint": "^9.38.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"postcss-nesting": "^13.0.2"
}
}