-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 918 Bytes
/
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
{
"name": "remix-video-chat",
"description": "Video chat app with Remix and 100ms react sdk in less than 100 lines of code.",
"license": "MIT",
"repository": {
"url": "https://github.com/Deep-Codes/remix-video-chat"
},
"scripts": {
"build": "remix build",
"dev": "node -r dotenv/config node_modules/.bin/remix dev --port 3000",
"postinstall": "remix setup node"
},
"dependencies": {
"@100mslive/react-icons": "^0.0.7",
"@100mslive/react-sdk": "^0.3.0",
"@remix-run/react": "^1.6.8",
"@remix-run/serve": "^1.6.8",
"@remix-run/vercel": "^1.6.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3"
},
"devDependencies": {
"@remix-run/dev": "^1.6.8",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"dotenv": "^16.0.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}