-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "nextjs-clients-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty": "prettier --write ./**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc",
"serve": "json-server --watch ./api/data/clients.json --port 8800"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.4",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.29.12",
"@tanstack/react-query-devtools": "^4.29.12",
"@types/node": "20.2.1",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"draftjs-to-markdown": "^0.6.0",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"immutable": "^4.3.0",
"json-server": "^0.17.3",
"next": "13.4.3",
"next-redux-wrapper": "^8.1.0",
"next-remove-imports": "^1.0.11",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-hook-form": "^7.44.3",
"react-redux": "^8.0.7",
"redux-persist": "^6.0.0",
"rehype-sanitize": "^5.0.1",
"rsuite": "^5.35.1",
"swr": "^2.1.5",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/draftjs-to-html": "^0.8.1",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-toggle": "^4.0.3",
"sass": "^1.63.0"
}
}