-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.51 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.51 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
{
"name": "temp",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3000",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --list-different"
],
"**/*": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@egjs/react-grid": "^1.16.0",
"@mui/material": "^5.15.9",
"@next/third-parties": "^14.1.0",
"@tanstack/react-query": "^5.17.12",
"@tanstack/react-query-devtools": "^5.17.12",
"@types/react-lottie": "^1.2.10",
"@vanilla-extract/dynamic": "^2.1.0",
"@vanilla-extract/integration": "^6.2.4",
"@vanilla-extract/next-plugin": "^2.3.2",
"@yaireo/tagify": "^4.19.0",
"apexcharts": "^3.46.0",
"axios": "^1.6.5",
"browser-image-compression": "^2.0.2",
"cheerio": "^1.0.0-rc.12",
"copy-to-clipboard": "^3.3.3",
"framer-motion": "^11.0.6",
"html-to-image": "^1.11.11",
"http-proxy-middleware": "^2.0.6",
"next": "14.0.4",
"next-pwa": "^5.6.0",
"open-graph": "^0.2.6",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-beautiful-dnd": "^13.1.1",
"react-cookie": "^7.0.2",
"react-dom": "^18",
"react-hook-form": "^7.50.0",
"react-ios-pwa-prompt": "^1.8.4",
"react-lottie": "^1.2.4",
"react-scripts": "^5.0.1",
"react-select": "^5.8.0",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.4",
"swiper": "^11.0.6",
"zustand": "^4.4.7"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@hookform/devtools": "^4.3.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^20",
"@types/open-graph": "^0.2.5",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"typescript": "^5"
}
}