-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 924 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
35
36
37
38
39
40
{
"name": "reacttwillio",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"concurrently": "^5.1.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-loader-spinner": "^3.1.5",
"react-scripts": "3.2.0",
"react-toasts": "^3.0.6",
"twilio": "^3.36.0",
"twilio-video": "^1.19.2"
},
"proxy": "http://localhost:3001",
"scripts": {
"client": "react-scripts start",
"server": "nodemon server.js",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}