-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.27 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.27 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
{
"name": "doryporoject",
"version": "0.6.3",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dorylab/dory.git"
},
"engines": {
"node": "24.x"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7",
"scripts": {
"dev": "yarn workspace web run dev",
"prebuild": "yarn workspace web run prebuild",
"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",
"client:migrate:generate": "yarn workspace web run client:migrate:generate",
"client:migrate:compile": "yarn workspace web run client:migrate:compile",
"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: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",
"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/*"
],
"devDependencies": {
"@playwright/test": "^1.54.2"
}
}