This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 2.89 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
{
"name": "smswithoutborders",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@headlessui/react": "^1.6.4",
"@hookform/resolvers": "^2.8.5",
"@mui/material": "^5.12.2",
"@mui/styled-engine-sc": "^5.12.0",
"@reduxjs/toolkit": "^1.7.1",
"@svgr/plugin-svgo": "^6.2.0",
"@svgr/webpack": "^6.2.1",
"axios": "^0.21.1",
"bootstrap": "^5.2.3",
"clsx": "^1.1.1",
"css-select": "^4.2.1",
"framer-motion": "^4.1.17",
"i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.3",
"i18next-http-backend": "^1.4.0",
"intro.js": "^6.0.0",
"intro.js-react": "^0.7.0",
"postcss": "^8.4.31",
"prop-types": "^15.8.1",
"qrious": "^4.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0",
"react-hook-form": "^7.24.0",
"react-hot-toast": "^2.2.0",
"react-i18next": "^11.15.7",
"react-icons": "^4.11.0",
"react-idle-timer": "^5.4.2",
"react-markdown": "^7.1.2",
"react-phone-number-input": "^3.1.23",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.1",
"svgo": "^2.8.0",
"yup": "^0.32.11",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"async": "^3.2.3",
"autoprefixer": "^10.4.13",
"canvas": "^2.10.2",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-testing-library": "^5.6.0",
"jake": "^10.8.5",
"minimist": "^1.2.6",
"node-forge": "^1.3.1",
"prettier": "^2.8.0",
"styled-components": "^5.3.10",
"tailwindcss": "^3.2.1",
"twin.macro": "^2.8.2"
},
"resolutions": {
"@svgr/webpack": "^6.1.2",
"css-select": "^4.2.1",
"postcss": "^8.4.5",
"svgo": "^2.8.0"
},
"scripts": {
"prestart": "make config",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write './**/*.{js,jsx,css,md,json}' --config ./.prettierrc",
"fix": "npm run fix:eslint && npm run fix:prettier"
},
"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"
]
}
}