-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 4.08 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
{
"name": "doryporoject",
"version": "0.30.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dorylab/dory.git"
},
"engines": {
"node": "24.x"
},
"packageManager": "yarn@4.14.1",
"scripts": {
"dev": "yarn workspace web run dev",
"build": "yarn workspace web run build",
"build:bootstrap": "yarn workspace web run build:bootstrap",
"deploy": "yarn workspace web run deploy",
"start": "yarn workspace web run start",
"studio": "yarn workspace web run studio",
"pglite:studio": "yarn workspace web run pglite:studio",
"drizzle:push": "yarn workspace web run drizzle:push",
"migrate:generate": "yarn workspace web run migrate:generate",
"pglite:migrate:generate": "yarn workspace web run pglite:migrate:generate",
"pglite:migrate:compile": "yarn workspace web run pglite:migrate:compile",
"pglite:seed:queries": "yarn workspace web run pglite:seed:queries",
"lint": "yarn workspace web run lint",
"lint:fix": "yarn workspace web run lint:fix",
"typecheck": "yarn workspace web run typecheck",
"format:write": "yarn workspace web run format:write",
"format:check": "yarn workspace web run format:check",
"check:sensitive-env-logging": "node ./scripts/check-sensitive-env-logging.mjs",
"test:clean-json": "yarn workspace web run test:clean-json",
"docker:build": "docker build --build-arg VERSION=$(git rev-parse HEAD) -t dorylab/dory .",
"docker:compose:up": "docker compose up -d",
"docker:compose:down": "docker compose down",
"docker:compose:logs": "docker compose logs -f dory",
"docker:run": "yarn workspace web run docker:run",
"registry:build": "yarn workspace web run registry:build",
"electron:compile": "yarn workspace dory run compile",
"electron:dev": "yarn workspace dory run dev",
"electron:dev:app": "yarn workspace dory run dev:app",
"electron:standalone": "yarn workspace dory run electron:standalone",
"electron:build": "yarn workspace dory run build",
"electron:build:apple": "yarn run electron:standalone && yarn workspace dory run electron:build:apple",
"electron:build:win": "yarn run electron:standalone && yarn workspace dory run electron:build:windows",
"electron:package:app:existing": "yarn workspace dory run package:app:existing",
"admin:dev": "yarn workspace admin run dev",
"admin:build": "yarn workspace admin run build",
"admin:start": "yarn workspace admin run start",
"admin:lint": "yarn workspace admin run lint",
"admin:typecheck": "yarn workspace admin run typecheck",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:docker": "PLAYWRIGHT_INCLUDE_DOCKER=1 playwright test --grep @docker",
"test:e2e:demo-flow": "playwright test tests/e2e/demo-connection-sql-console.spec.ts --project=chromium --no-deps",
"test:e2e:demo-flow:record": "node ./scripts/run-demo-flow-recording.mjs",
"release-notes": "yarn workspace web run release-notes",
"stripe": "stripe listen --forward-to localhost:3000/api/auth/stripe/webhook"
},
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"@azure/msal-node@npm:^5.1.0": "npm:5.2.1",
"@ungap/structured-clone@npm:^1.0.0": "npm:1.3.1",
"dompurify@npm:3.2.7": "npm:3.4.2",
"dompurify@npm:^3.3.1": "npm:3.4.2",
"dompurify@npm:^3.3.2": "npm:3.4.2",
"esbuild@npm:~0.18.20": "npm:0.25.12",
"express-rate-limit@npm:^8.2.1": "npm:8.5.1",
"fast-xml-parser@npm:5.5.8": "npm:5.8.0",
"fast-xml-parser@npm:^5.5.6": "npm:5.8.0",
"ip-address@npm:10.1.0": "npm:10.2.0",
"ip-address@npm:^10.0.1": "npm:10.2.0",
"next@npm:^14": "npm:16.2.7",
"postcss@npm:8.4.31": "npm:8.5.14",
"postcss@npm:^8.5.6": "npm:8.5.14"
},
"devDependencies": {
"@playwright/test": "^1.59.1"
}
}