-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.49 KB
/
package.json
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": "watch",
"version": "0.0.0",
"type": "module",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"license": "Apache-2.0",
"scripts": {
"build": "pnpm -r run build",
"develop": "concurrently --names \"app,graphql-types,planetscale,caddy\" --prefix-colors \"bgBlue.bold,bgMagenta.bold,bgGreen.bold,bgYellow.bold\" \"pnpm --filter ./app run develop\" \"quilt-graphql-typescript --watch\" \"pscale connect watch-test-db develop --port 3309\" \"caddy start --config ./configuration/caddy/Caddyfile\"",
"format": "prettier --write --cache .",
"lint": "prettier --check --cache .",
"test": "vitest",
"test.e2e": "playwright test --config ./configuration/playwright/playwright.config.ts",
"type-check": "quilt-graphql-typescript && tsc --build --pretty",
"packages.version": "changeset version && pnpm install --no-frozen-lockfile",
"packages.deploy": "pnpm -r publish",
"packages.deploy.preview": "changeset version --snapshot preview && changeset publish --tag preview --no-git-tag",
"typescript.run": "tsx --conditions quilt:source",
"typescript.watch": "tsx watch --conditions quilt:source"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.26.2",
"@planetscale/database": "^1.16.0",
"@playwright/test": "^1.51.0",
"@prisma/adapter-planetscale": "^5.11.0",
"@prisma/client": "^5.11.0",
"@quilted/browserslist-config": "^0.1.9",
"@quilted/cloudflare": "^0.4.0",
"@quilted/graphql-tools": "^0.2.12",
"@quilted/prettier": "^0.2.11",
"@quilted/quilt": "^0.8.10",
"@quilted/rollup": "^0.3.1",
"@quilted/typescript": "^0.4.2",
"@quilted/vite": "^0.2.1",
"@types/common-tags": "^1.8.1",
"@types/node": "^20.9.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.0",
"@watching/api": "workspace:*",
"concurrently": "^8.2.2",
"dotenv": "^16.0.0",
"esbuild": "^0.25.0",
"nodemon": "^2.0.0",
"preact": "^10.26.2",
"prettier": "^3.5.0",
"prisma": "^5.11.0",
"react": "npm:@quilted/react@^18.2.0",
"react-dom": "npm:@quilted/react-dom@^18.2.0",
"rollup": "^4.34.8",
"source-map-support": "^0.5.21",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vite": "^6.1.1",
"vitest": "^3.0.6",
"wrangler": "^3.78.0"
},
"packageManager": "[email protected]+sha256.4b702887986995933d4300836b04d6d02a43bc72b52e4f7e93a4ca608b959197",
"prettier": "@quilted/prettier",
"browserslist": [
"defaults and not dead"
]
}