-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "simple-chat",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "remix vite:build",
"dev": "tsx ./server.ts",
"start": "cross-env NODE_ENV=production node ./server.js",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"db:migrate": "prisma migrate dev --name init",
"db:view": "prisma studio"
},
"keywords": [],
"type": "module",
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.11.0",
"@remix-run/express": "^2.8.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"express": "^4.19.1",
"isbot": "^4.4.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.363.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-auth-github": "^1.7.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tsx": "^4.10.1"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"postcss": "^8.4.38",
"prisma": "^5.11.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^5.2.2"
}
}