-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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
{
"name": "meet-compass",
"version": "0.1.0",
"private": false,
"author": "Névio Costa Magagnin",
"description": "Video chat application with WebRTC",
"repository": "https://github.com/NEVI0/meet-compass",
"homepage": "https://meet-compass.herokuapp.com/home",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"dependencies": {
"formik": "^2.2.9",
"i18next": "^21.8.10",
"next": "12.1.6",
"polished": "^4.2.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "^11.17.2",
"react-icons": "^4.4.0",
"react-loader-spinner": "^5.1.5",
"react-lottie": "^1.2.3",
"react-toastify": "^9.0.4",
"simple-peer": "^9.11.1",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.5",
"@types/i18next": "^13.0.0",
"@types/node": "17.0.39",
"@types/react": "18.0.11",
"@types/react-dom": "18.0.5",
"@types/react-i18next": "^8.1.0",
"@types/react-icons": "^3.0.0",
"@types/react-loader-spinner": "^4.0.0",
"@types/react-lottie": "^1.2.6",
"@types/react-toastify": "^4.1.0",
"@types/simple-peer": "^9.11.4",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/styled-components": "^5.1.25",
"@types/yup": "^0.29.14",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"typescript": "4.7.3"
}
}