-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
122 lines (122 loc) · 3.41 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mirrorfly-webchat",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "env-cmd -f .env.development react-scripts start",
"start:dev": "env-cmd -f .env.dev react-scripts start",
"start:qa": "env-cmd -f .env.qa react-scripts start",
"start:uat": "env-cmd -f .env.uat react-scripts start",
"start:prod": "env-cmd -f .env.prod react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "npm run test:codeCoverage -- --coverage --watchAll=false --runInBand",
"test:coverage": "react-scripts test '$FILE'",
"test:codeCoverage": "react-scripts test"
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@loadable/component": "^5.12.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.21.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"croppie": "^2.6.5",
"cryptlib": "^1.0.3",
"crypto-hash": "^2.0.1",
"crypto-js": "^4.1.1",
"crypto-random-string": "^5.0.0",
"emoji-mart": "5.3.2",
"env-cmd": "^10.1.0",
"firebase": "^8.10.0",
"google-libphonenumber": "^3.2.10",
"history": "^4.10.1",
"html-to-react": "^1.6.0",
"js-levenshtein": "^1.1.6",
"localforage": "^1.7.4",
"lodash": "^4.17.20",
"lodash.camelcase": "^4.3.0",
"luxon": "^1.24.1",
"mic-recorder-to-mp3": "^2.2.2",
"mirrorfly-sdk": "^4.25.4",
"moment": "^2.29.4",
"node-sass": "^7.0.2",
"prop-types": "^15.7.2",
"push.js": "^1.0.12",
"react": "^18.2.0",
"react-bootstrap-typeahead": "^6.2.3",
"react-datepicker": "^4.17.0",
"react-dom": "^18.2.0",
"react-error-overlay": "^6.0.9",
"react-fast-compare": "^2.0.4",
"react-h5-audio-player": "^3.8.6",
"react-html5-camera-photo": "^1.5.4",
"react-icons": "^3.10.0",
"react-image-crop": "^8.6.4",
"react-image-gallery": "^1.0.7",
"react-infinite-scroll-component": "^6.1.0",
"react-loadable": "^5.5.0",
"react-outside-click-handler": "^1.3.0",
"react-redux": "^7.2.0",
"react-responsive-carousel": "^3.2.8",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-toastify": "^5.5.0",
"react-zoom-pan-pinch": "^3.0.8",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"runes": "^0.4.3",
"sass-loader": "^10.2.0",
"socket.io-client": "^4.5.4",
"stream": "^0.0.2",
"sync-request": "^6.1.0",
"toastr": "^2.1.4",
"util": "^0.12.5",
"uuid": "^3.4.0"
},
"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"
]
},
"devDependencies": {
"@testing-library/react": "^9.5.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"enzyme": "^3.11.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"redux-mock-store": "^1.5.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"video.js": "^7.8.3"
},
"browser": {
"crypto": false
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"cobertura"
]
}
}