-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.47 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.47 KB
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
{
"name": "5w1h",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen",
"test": "jest --watch",
"cypress": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@apollo/client": "^3.5.6",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@chatscope/chat-ui-kit-react": "^1.8.3",
"@chatscope/chat-ui-kit-styles": "^1.2.3",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.8",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.5.2",
"@toast-ui/editor": "^3.1.3",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.0.0",
"@toast-ui/editor-plugin-color-syntax": "^3.0.2",
"@toast-ui/editor-plugin-uml": "^3.0.1",
"@toast-ui/react-editor": "^3.1.3",
"antd": "^4.19.4",
"apollo-upload-client": "^17.0.0",
"autocomplete": "^0.0.1",
"axios": "^0.24.0",
"create-react-app": "^5.0.0",
"d3": "^7.3.0",
"dompurify": "^2.3.6",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"express": "^4.17.3",
"framer-motion": "^6.2.8",
"graphql": "^16.2.0",
"graphql-request": "^4.0.0",
"http": "^0.0.1-security",
"lint": "^0.7.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"next": "12.0.7",
"node-sass": "^7.0.1",
"prismjs": "^1.27.0",
"react": "17.0.2",
"react-chat-engine": "^1.11.22",
"react-daum-postcode": "^3.0.1",
"react-dom": "17.0.2",
"react-draft-wysiwyg": "^1.14.7",
"react-full-page": "^0.1.12",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.27.0",
"react-icons": "^4.3.1",
"react-infinite-scroller": "^1.2.4",
"react-player": "^2.9.0",
"react-quill": "^1.3.5",
"react-scroll": "^1.8.6",
"react-slick": "^0.28.1",
"react-timezone": "^2.4.0",
"recharts": "^2.1.9",
"slick-carousel": "^1.8.1",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"stage": "^1.0.0",
"swiper": "^8.0.7",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/typescript": "^2.4.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/apollo-upload-client": "^17.0.0",
"@types/dompurify": "^2.3.3",
"@types/draft-js": "^0.11.9",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.21",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-infinite-scroller": "^1.2.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cypress": "^9.5.1",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"husky": "4",
"jest": "^27.5.1",
"prettier": "2.6.0",
"typescript": "^4.5.5",
"typescript-styled-plugin": "^0.18.2"
},
"husky": {
"hook": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npx eslint '**/*.{ts,tsx}'"
]
}
}