-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.76 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
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
{
"name": "elephant-chrome",
"private": false,
"license": "MIT",
"version": "0.10.0",
"type": "module",
"scripts": {
"debug": "concurrently npm:debug:vite npm:dev:client:css",
"debug:vite": "tsx watch --inspect --ignore vite.config.ts.timestamp* --env-file=.env src-srv/index.ts",
"dev": "concurrently npm:dev:vite npm:dev:client:css",
"dev:vite": "tsx watch --ignore vite.config.ts.timestamp* --env-file=.env src-srv/index.ts",
"dev:client": "concurrently npm:dev:client:*",
"dev:client:web": "vite",
"dev:client:css": "tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"build:server": "tsc --project ./src-srv/ && tsc-alias -p ./src-srv/tsconfig.json",
"build:client": "tsc && vite build",
"build:css": "tailwindcss -i ./src/input.css -o ./dist/output.css",
"build": "NODE_ENV=production npm run build:css && npm run build:client && npm run build:server",
"start": "NODE_ENV=production node dist/src-srv/index.js",
"start:local": "NODE_ENV=production node --env-file .env dist/src-srv/index.js",
"lint": "eslint . --cache",
"tsc": "tsc --noEmit && tsc -p ./src-srv/tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"preview": "vite preview"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"dependencies": {
"@auth/express": "^0.8.4",
"@date-fns/utc": "^2.1.0",
"@grafana/faro-react": "^1.14.1",
"@hocuspocus/extension-database": "^2.15.2",
"@hocuspocus/extension-logger": "^2.15.2",
"@hocuspocus/extension-redis": "^2.15.2",
"@hocuspocus/provider": "^2.15.2",
"@hocuspocus/server": "^2.15.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@protobuf-ts/twirp-transport": "^2.9.4",
"@slate-yjs/core": "^1.0.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-table": "^8.21.2",
"@ttab/api-client": "^2.9.1",
"@ttab/elephant-api": "^0.17.10",
"@ttab/elephant-ui": "^0.9.1",
"@ttab/textbit": "^0.21.2",
"@ttab/textbit-plugins": "^0.5.0",
"class-variance-authority": "^0.7.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"escape-html": "^1.0.3",
"express": "^4.21.2",
"express-ws": "^5.0.2",
"get-user-locale": "^2.3.2",
"lodash-es": "^4.17.21",
"next-auth": "^5.0.0-beta.25",
"node-html-parser": "^7.0.1",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^4.7.0",
"slate": "^0.112.0",
"slate-hyperscript": "^0.100.0",
"slate-react": "^0.112.1",
"sonner": "^2.0.1",
"swr": "^2.3.2",
"vite-express": "^0.20.0",
"yjs": "^13.6.21",
"zod": "^3.24.2"
},
"devDependencies": {
"@protobuf-ts/runtime-rpc": "^2.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@ttab/eslint-config-elephant": "^0.0.8",
"@types/cors": "^2.8.17",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.3",
"@types/express-ws": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.7",
"concurrently": "^9.1.2",
"eslint": "^9.21.0",
"fake-indexeddb": "^6.0.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.0.0",
"tailwindcss": "^3.4.17",
"tsc-alias": "^1.8.11",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-static-copy": "^2.3.0",
"vitest": "^3.0.4"
}
}