-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 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
{
"name": "react-websocket",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -r 'pnpm dev:server' 'pnpm ws-server'",
"start": "concurrently -r 'pnpm start:server' 'pnpm ws-server'",
"dev:server": "nodemon -w src/server -x tsx src/server/main.ts",
"start:server": "NODE_ENV=production pnpm tsx src/server/main.ts",
"ws-server": "node --env-file .env.websocket node_modules/y-websocket/bin/server.cjs",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.4",
"@xyflow/react": "12.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"perfect-freehand": "1.0.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"uuid": "^10.0.0",
"vite-express": "^0.16.0",
"y-websocket": "^2.0.3",
"yjs": "^13.6.15"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.7",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"nodemon": "^3.1.0",
"typescript": "^5.4.3",
"vite": "^5.2.11"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "pnpm i && pnpm dev"
}
}