-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "react_chat_with_firebase",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@types/redux-logger": "^3.0.8",
"bootstrap": "^5.0.0",
"firebase": "^8.5.0",
"md5": "^2.3.0",
"mime-types": "^2.1.30",
"next": "10.2.0",
"next-redux-wrapper": "^6.0.2",
"react": "^17.0.1",
"react-bootstrap": "^1.6.0",
"react-dom": "^17.0.1",
"react-hook-form": "^7.5.2",
"react-icons": "^4.2.0",
"react-query": "^3.13.4",
"react-redux": "^7.2.4",
"react-slick": "^0.28.1",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@types/md5": "^2.3.0",
"@types/node": "^12.20.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-slick": "^0.23.4",
"@types/redux-promise": "^0.5.29",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.0.7"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"license": "MIT"
}