This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
forked from twilio/twilio-video-app-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "twilio-video-app-react",
"version": "0.0.1",
"private": true,
"author": "torch.io",
"license": "MIT",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"start": "concurrently npm:server npm:dev",
"dev": "react-scripts start",
"server": "node server.js",
"build": "webpack --config webpack.config.js",
"test": "jest",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.{ts,tsx}",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome",
"cypress:ci": "cross-env CYPRESS_baseUrl=http://localhost:8081 start-server-and-test server http://localhost:8081 cypress:run"
},
"dependencies": {
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@types/twilio-video": "^2.7.0",
"cors": "^2.8.5",
"react": "16.8.6",
"react-dom": "16.8.6",
"twilio": "^3.39.3",
"twilio-video": "2.8.0-beta.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/d3-timer": "^1.0.9",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/fscreen": "^1.0.1",
"@types/jest": "^24.9.1",
"@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",
"@types/twilio-video": "^2.7.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"cypress": "^5.4.0",
"cypress-multi-reporters": "^1.4.0",
"d3-timer": "^1.0.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"express": "^4.17.1",
"firebase": "^7.24.0",
"fscreen": "^1.0.2",
"husky": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"jest-junit": "^9.0.0",
"lint-staged": "^9.5.0",
"lodash.throttle": "^4.1.1",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.3",
"notistack": "^1.0.0",
"pixelmatch": "^5.1.0",
"prettier": "^1.19.1",
"puppeteer": "^5.3.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.2",
"react-test-renderer": "^16.12.0",
"start-server-and-test": "^1.10.8",
"strip-color": "^0.1.0",
"ts-jest": "^24.3.0",
"ts-loader": "^8.0.9",
"typescript": "^3.9.7",
"webpack": "4.40.2",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {},
"proxy": "http://localhost:8081/",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-shadow": "warn"
}
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}