forked from dikshit-n/bp-react-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.96 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
{
"name": "bp-react-2",
"description": "Boilerplate code for react projects using material ui and social authentication features like Google and Microsoft",
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/msal-browser": "^2.33.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.87",
"@mui/material": "^5.8.5",
"@reduxjs/toolkit": "^1.8.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/react-swipeable-views": "^0.13.1",
"axios": "^0.27.2",
"compress.js": "^1.1.2",
"csstype": "^3.1.0",
"date-fns": "^2.28.0",
"env-cmd": "^10.1.0",
"formik": "^2.2.9",
"material-ui-color": "^1.2.0",
"material-ui-phone-number": "^3.0.0",
"moment": "^2.29.4",
"notistack": "^2.0.5",
"pluralize": "^8.0.0",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-day-picker": "^7.4.10",
"react-debounce-input": "^3.3.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-helmet": "^6.1.0",
"react-input-mask": "^2.0.4",
"react-number-format": "^4.9.3",
"react-otp-input": "^2.4.0",
"react-phone-number-input": "^3.2.11",
"react-query": "^3.39.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-swipeable-views": "^0.14.0",
"socket.io-client": "^4.5.4",
"typescript": "^4.7.4",
"uniqid": "^5.4.0",
"validator": "^13.7.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11",
"yup-phone": "^1.3.2"
},
"scripts": {
"start": "env-cmd -f .env.dev react-scripts start",
"start:dev": "env-cmd -f .env.dev react-scripts start",
"start:prod": "env-cmd -f .env.prod react-scripts start",
"build": "env-cmd -f .env.dev react-scripts build",
"build:dev": "env-cmd -f .env.dev react-scripts build",
"build:prod": "env-cmd -f .env.prod react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.tsx src/**/*.jsx src/**/*.js src/**/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^16.11.41",
"@types/react": "^18.0.14",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.5",
"@types/react-query": "^1.2.9",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"csstype": "^3.1.0",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"sass": "^1.58.3"
}
}