forked from PalisadoesFoundation/talawa-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.65 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
{
"name": "my-app",
"version": "3.0.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "^3.4.0-beta.19",
"@apollo/link-error": "^2.0.0-beta.3",
"@apollo/react-testing": "^4.0.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.24",
"@types/jquery": "^3.5.6",
"@types/node": "^12.20.16",
"@types/react-bootstrap": "^0.32.32",
"@types/react-datepicker": "^4.1.4",
"@types/react-dom": "^17.0.9",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-modal": "^3.12.1",
"bootstrap": "^5.3.0",
"dayjs": "^1.10.7",
"detect-newline": "^4.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^3.4.0",
"flag-icons": "^6.6.6",
"graphql": "^15.5.1",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.1",
"jest-docblock": "^27.4.0",
"js-cookie": "^3.0.1",
"node-sass": "^9.0.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-bootstrap": "^2.7.4",
"react-calendar": "^4.2.1",
"react-datepicker": "^4.2.0",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-i18next": "^11.18.1",
"react-redux": "^7.2.5",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.0.3",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"typescript": "^4.3.5",
"web-vitals": "^1.0.1",
"yarn": "^1.22.17"
},
"scripts": {
"serve": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env NODE_ENV=test node scripts/test.js --watchAll --coverage",
"eject": "react-scripts eject",
"lint:check": "eslint \"**/*.{ts,tsx}\" --max-warnings=0",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,scss,css}\"",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prepare": "husky install",
"jest-preview": "jest-preview"
},
"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": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@types/enzyme": "^3.10.9",
"@types/js-cookie": "^3.0.2",
"@types/react": "^17.0.14",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"cross-env": "^7.0.3",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jest-enzyme": "^7.1.2",
"jest-localstorage-mock": "^2.4.19",
"jest-location-mock": "^1.0.9",
"jest-preview": "^0.3.1",
"jquery": "^3.2.1",
"postcss-modules": "^6.0.0"
},
"resolutions": {
"@apollo/client": "^3.4.0-beta.19",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"graphql": "^16.5.0"
}
}