-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
{
"name": "engage-meet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@twilio-labs/plugin-rtc": "^0.8.2",
"@twilio/conversations": "^1.1.0",
"@twilio/video-processors": "^1.0.0",
"@types/d3-timer": "^1.0.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/fscreen": "^1.0.1",
"@types/jest": "^24.9.1",
"@types/linkify-it": "^3.0.0",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^12.12.26",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"concurrently": "^5.1.0",
"copyfiles": "^2.4.1",
"d3-timer": "^1.0.10",
"express": "^4.17.1",
"fscreen": "^1.0.2",
"husky": "^3.1.0",
"linkify-it": "^3.0.2",
"lint-staged": "^9.5.0",
"lodash.throttle": "^4.1.1",
"notistack": "^1.0.9",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-emoji-render": "^1.2.4",
"react-hotkeys-hook": "^3.3.2",
"react-ionicons": "^4.2.0",
"react-loadingg": "^1.7.2",
"react-router-dom": "^5.1.2",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"twilio": "^3.57.0",
"twilio-video": "^2.14.0",
"typescript": "^3.8.3"
},
"scripts": {
"start": "concurrently npm:server npm:dev",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src server",
"postinstall": "rimraf public/virtualbackground && copyfiles -f node_modules/@twilio/video-processors/dist/build/* public/virtualbackground",
"server": "ts-node -T -P server/tsconfig.json server/index.ts"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-shadow": "off",
"@typescript-eslint/no-shadow": [
"warn"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}