-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.74 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.74 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "quorum-sql",
"private": true,
"version": "1.7.4",
"description": "Team-based SQL query management with version control and approval workflows",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:server": "npm --prefix server run lint",
"analyze": "ANALYZE=true vite build",
"preview": "vite preview",
"migrations:combine": "node scripts/generate-supabase-migrations.js",
"setup:docker": "bash scripts/setup.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:flaky": "playwright test --repeat-each 3 --retries 0 --reporter=line",
"test:e2e:flaky:report": "PLAYWRIGHT_JSON=1 playwright test --repeat-each 3 --retries 0 --reporter=line && node scripts/report-flaky-tests.js",
"test:unit": "vitest run --reporter=verbose",
"test:unit:report": "VITEST_JUNIT=1 vitest run --coverage",
"test:unit:coverage": "vitest run --coverage",
"test:integration": "node --test server/tests/integration/*.mjs",
"typecheck": "tsc -p tsconfig.app.json --noEmit",
"typecheck:server": "tsc -p server/tsconfig.json --noEmit",
"check:large-files": "node scripts/check-large-files.js",
"report:tech-debt": "node scripts/report-tech-debt.js",
"report:flaky-tests": "node scripts/report-flaky-tests.js",
"report:test-timing": "node scripts/report-test-timing.js",
"check:unused-deps": "knip",
"check:dup-code": "jscpd --config .jscpd.json --exitCode 0",
"check:version-drift": "syncpack lint",
"check:feature-flags": "node scripts/check-feature-flags.js",
"check:test-isolation": "node scripts/check-test-isolation.js",
"check:agents-md": "node scripts/validate-agents-md.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:api": "redocly build-docs docs/api/openapi.yml -o docs/api/openapi.html",
"turbo:build": "turbo run build",
"turbo:lint": "turbo run lint",
"turbo:test": "turbo run test",
"turbo:typecheck": "turbo run typecheck",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "changeset version && git add . && git commit -m 'chore: version packages' && git push",
"prepare": "husky install"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@sentry/react": "^10.53.1",
"@supabase/supabase-js": "^2.106.0",
"@tanstack/react-query": "^5.100.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.2.1",
"lucide-react": "^1.16.0",
"monaco-editor": "^0.55.1",
"next-themes": "^0.4.6",
"posthog-js": "^1.374.2",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@redocly/cli": "^2.31.2",
"@types/node": "^25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.1",
"@vitest/coverage-v8": "^4.1.6",
"autoprefixer": "^10.5.0",
"eslint": "^10.4.0",
"eslint-plugin-boundaries": "^6.0.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jscpd": "^4.2.3",
"knip": "^6.14.1",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.0",
"syncpack": "^15.3.1",
"tailwindcss": "^3.4.17",
"turbo": "^2.9.14",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13",
"vite-plugin-monaco-editor": "^1.1.0",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"fast-xml-parser": ">=5.3.4",
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@>=5.0.0 <5.1.7": ">=5.1.7",
"minimatch@10.2.0": "10.2.3",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"dompurify": "3.4.0",
"postcss": "8.5.14",
"rollup": ">=4.59.0"
}
},
"overrides": {
"dompurify": "3.4.0",
"postcss": "$postcss",
"rollup": ">=4.59.0"
}
}