This repository was archived by the owner on Aug 27, 2023. It is now read-only.
-
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.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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": "streamify-frontend",
"version": "0.0.0",
"private": true,
"homepage": "/",
"dependencies": {
"event-source-polyfill": "1.0.31",
"formik": "2.4.3",
"i18next": "23.4.5",
"i18next-browser-languagedetector": "7.1.0",
"i18next-http-backend": "2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "13.2.0",
"react-remove-scroll": "2.5.6",
"react-router-dom": "6.15.0",
"react-scripts": "5.0.1",
"typescript": "5.1.6",
"yup": "1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "14.0.0",
"@types/event-source-polyfill": "1.0.1",
"@types/jest": "29.5.4",
"@types/node": "20.5.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.47.0",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "3.0.0",
"jest": "29.6.3",
"prettier": "3.0.2"
},
"scripts": {
"format": "prettier --write \"src\"",
"lint": "eslint \"src\" --fix",
"test": "CI=true react-scripts test --verbose --coverage",
"test:dev": "react-scripts test --watchAll --verbose --maxWorkers=1",
"build": "react-scripts build",
"start:dev": "react-scripts start",
"start:prod": "node bootstrap.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}