forked from Iraq-RBC-Capstones-2021/capstone-react-libvery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.06 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
{
"name": "my-app",
"version": "1.22.15",
"private": true,
"dependencies": {
"3d-react-carousal": "^4.0.2",
"@craco/craco": "^6.3.0",
"@reduxjs/toolkit": "^1.5.1",
"@tailwindcss/forms": "^0.3.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"firebase": "^9.1.1",
"formik": "^2.2.9",
"framer-motion": "^4.1.17",
"i18n": "^0.13.3",
"i18next": "^21.2.4",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.3.1",
"js-cookie": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.12.0",
"react-icons": "^4.3.1",
"react-medium-image-zoom": "^4.3.5",
"react-modal": "^3.14.3",
"react-rating-stars-component": "^2.2.0",
"react-redux": "^7.2.3",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-select": "^5.1.0",
"react-spinners": "^0.11.0",
"react-toastify": "^8.0.3",
"yup": "^0.32.9"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint": "lint-staged"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"react-hooks/exhaustive-deps": "error",
"no-var": "error",
"prefer-template": "warn",
"radix": "warn",
"no-console": "warn",
"import/first": "error"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^9",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"postcss": "^7",
"prettier": "^2.3.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}