forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.56 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.56 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
{
"name": "zbugs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"check-types": "tsc && tsc -p tsconfig.node.json",
"check-types:watch": "tsc --watch",
"db-up": "cd docker && docker compose up",
"db-down": "cd docker && docker compose down",
"clean": "cd docker && docker volume rm docker_zbugs_pgdata_sync && docker volume rm docker_zbugs_pgdata_upstream && rm -rf /tmp/zbugs-sync-replica.db*",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"preview": "vite preview",
"zero": "tsx ../../packages/zero-cache/src/server/runner/main.ts",
"zero-cache-dev": "tsx ../../packages/zero/src/zero-cache-dev.ts --schema-path=./shared/schema.ts",
"zero-brk": "tsx --inspect-brk ../../packages/zero-cache/src/server/debug/single.ts",
"transform-query": "tsx ../../packages/zero-cache/src/scripts/transform-query.ts",
"run-query": "tsx ../../packages/zero-cache/src/scripts/run-query.ts",
"run-query-brk": "tsx --inspect-brk ../../packages/zero-cache/src/scripts/run-query.ts",
"create-keys": "tsx ../../packages/zero-cache/src/scripts/create-jwk.ts",
"test": "cd ../../packages/zero && npm run build && cd ../../apps/zbugs && vitest run --config vitest.config.ts --project zbugs/no-pg",
"test:watch": "vitest --config vitest.config.ts --project zbugs/no-pg",
"analyze": "analyze -c vite.config.ts",
"test:pg": "vitest run --config vitest.config.ts --project zbugs/pg-16",
"test:pg:watch": "vitest --config vitest.config.ts --project zbugs/pg-16"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.39.0",
"@fastify/cookie": "^10.0.0",
"@fastify/oauth2": "^8.0.0",
"@floating-ui/react": "^0.26.28",
"@headlessui/react": "^2.1.8",
"@octokit/core": "^6.1.2",
"@rocicorp/zero": "0.22.2025072901",
"@schickling/fps-meter": "^0.1.2",
"@tanstack/react-virtual": "^3.10.9",
"classnames": "^2.5.1",
"emoji-picker-element": "^1.22.8",
"emoji-picker-element-data": "^1.6.1",
"fastify": "^5.0.0",
"jose": "^5.9.3",
"js-cookie": "^3.0.5",
"nanoid": "^5.1.2",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-textarea-autosize": "^8.5.3",
"react-toastify": "^10.0.6",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"use-debounce": "^10.0.4",
"usehooks-ts": "^3.1.0",
"wouter": "^3.7.1"
},
"devDependencies": {
"@rocicorp/eslint-config": "^0.7.0",
"@rocicorp/prettier-config": "^0.3.0",
"@tailwindcss/forms": "^0.5.0",
"@types/js-cookie": "^3.0.6",
"@types/k6": "^0.53.2",
"@types/node": "^20.8.4",
"@types/react": "^18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/runner": "3.2.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss-preset-env": "^7.4.3",
"prettier": "^3.5.3",
"rehype-video": "^2.3.0",
"tailwindcss": "^3.0.23",
"tsx": "^4.19.1",
"typescript": "~5.8.2",
"universal-user-agent": "^7.0.2",
"vite": "6.2.1",
"vite-bundle-analyzer": "^0.17.3",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "3.2.4"
},
"eslintConfig": {
"extends": "../../eslint-config.json"
},
"prettier": "@rocicorp/prettier-config"
}