-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.3 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
{
"name": "react-basic-app",
"version": "1.0.0",
"author": "Nishant Kohli",
"private": true,
"dependencies": {
"@casl/ability": "^4.1.6",
"@casl/react": "^2.1.1",
"@date-io/date-fns": "1.3.13",
"@fortawesome/fontawesome-free": "^5.15.1",
"@fullcalendar/bootstrap": "^5.4.0",
"@fullcalendar/core": "^5.4.0",
"@fullcalendar/daygrid": "^5.4.0",
"@fullcalendar/interaction": "^5.4.0",
"@fullcalendar/list": "^5.4.0",
"@fullcalendar/moment": "^5.4.0",
"@fullcalendar/react": "^5.4.0",
"@fullcalendar/timegrid": "^5.4.0",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@reduxjs/toolkit": "^1.4.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "9",
"bootstrap": "^4.5.3",
"customize-cra": "^1.0.0",
"date-fns": "^2.14.0",
"env-cmd": "^10.1.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-imagemin": "^7.1.0",
"gulp-uglify": "^3.0.2",
"husky": "^4.2.5",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.0.19",
"lint-staged": "^10.2.13",
"material-auto-rotating-carousel": "^3.0.2",
"mobx": "^6.0.3",
"mobx-react": "^7.0.4",
"moment": "^2.29.1",
"nanoid": "^3.1.17",
"postcss": "7",
"prettier": "^2.1.1",
"rc-time-picker": "^3.7.3",
"react": "^16.13.1",
"react-custom-scrollbars": "^4.2.1",
"react-day-picker": "^7.4.8",
"react-dom": "^16.13.1",
"react-hook-form": "^6.14.1",
"react-i18next": "^11.7.2",
"react-multi-date-picker": "^2.0.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-swipeable-bottom-sheet": "^1.1.2",
"react-swipeable-views": "^0.13.9",
"redux-persist": "^6.0.0",
"store": "^2.0.12",
"styled-components": "^5.2.0",
"styled-theming": "^2.2.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tippy.js": "^6.2.7"
},
"scripts": {
"start": "env-cmd -f .env react-app-rewired start",
"start-prod": "env-cmd -f .env.prod react-app-rewired start",
"start-testing": "env-cmd -f .env.testing react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"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"
]
},
"devDependencies": {
"@types/styled-components": "^5.1.3",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "6.6.0",
"eslint-plugin-react": "^7.20.6",
"gulp": "^4.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"react-app-rewired": "^2.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, jsx, ts, tsx, md, html}": [
"prettier --write",
"eslint --fix"
]
},
"plugins": [
"babel-plugin-styled-components"
]
}