-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
130 lines (130 loc) · 3.84 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
121
122
123
124
125
126
127
128
129
130
{
"name": "thinkmoreforum-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export",
"test": "jest -c jest.config.js --colors --coverage --passWithNoTests",
"test:watch": "jest -c jest.config.js --colors --coverage --passWithNoTests --watch",
"lint:eslint": "eslint --ext .tsx,.ts ./pages ./components ./utils",
"lint:sass": "sass-lint -v",
"lint:prettier": "prettier -c .prettierrc \"{pages,components,utils}/**/*.{ts,tsx}\" --check",
"lint:all": "npm run prettier && npm run lint:eslint && npm run lint:sass && npm run lint:prettier",
"prepare": "husky install",
"prettier": "prettier -c .prettierrc \"{pages,components,utils,store}/**/*.{ts,tsx}\" --write"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.1",
"@mui/lab": "^5.0.0-alpha.74",
"@mui/material": "^5.4.1",
"@mui/styles": "^5.4.4",
"@mui/system": "^5.6.0",
"@mui/x-data-grid": "^5.6.1",
"@redux-devtools/extension": "^3.2.2",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.0.4",
"@uiw/react-textarea-code-editor": "^2.0.1",
"antd": "^4.18.9",
"axios": "^0.25.0",
"cropperjs": "^1.5.12",
"formik": "^2.2.9",
"html-react-parser": "^1.4.8",
"isomorphic-dompurify": "^0.18.0",
"jest-mock": "^27.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"net": "^1.0.2",
"next": "^12.1.4",
"next-remove-imports": "^1.0.6",
"nextjs-progressbar": "^0.0.14",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-cropper": "^2.1.8",
"react-dom": "17.0.2",
"react-draggable": "^4.4.4",
"react-dropzone": "^12.0.4",
"react-github-btn": "^1.4.0",
"react-hot-toast": "^2.2.0",
"react-perfect-scrollbar": "^1.5.8",
"react-quill": "^1.3.5",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass": "^1.49.7",
"sharp": "^0.30.4",
"simplebar": "^5.3.6",
"simplebar-react": "^2.3.6",
"sockjs-client": "^1.6.0",
"stompjs": "^2.3.3",
"styled-components": "^5.3.3",
"swr": "^1.2.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@next/eslint-plugin-next": "^12.0.7",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.23",
"@types/react": "^17.0.2",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.13.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jsdom": "^19.0.0",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"sass-lint": "^1.13.1",
"typescript": "^4.6.3"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": [
"prettier --single-quote --write",
"git add"
]
}
}