-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 2.93 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
{
"name": "project_hub",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0",
"yarn": ">=1.22.0",
"pnpm": ">=7.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,md,d.ts,json}\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --watch",
"prepare": "husky install"
},
"lint-staged": {
"*.{md,ts,tsx,js,json}": [
"prettier --write"
]
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@next-auth/mongodb-adapter": "^1.1.3",
"@tsparticles/engine": "^3.2.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.2.1",
"@vercel/speed-insights": "^1.0.7",
"ai": "^2.2.15",
"axios": "^1.7.4",
"chart.js": "^4.4.4",
"clsx": "^2.1.0",
"framer-motion": "^10.16.4",
"husky": "^8.0.3",
"lottie-react": "^2.4.0",
"mongodb": "^5.8.0",
"mongoose": "^7.6.3",
"next": "14.2.10",
"next-auth": "^4.24.5",
"openai-edge": "^1.2.2",
"prom-client": "^15.1.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.3.0",
"react-parallax-tilt": "^1.7.156",
"react-query": "^3.39.3",
"react-tag-input": "^6.8.1",
"react-tag-input-component": "^2.0.2",
"react-toastify": "^9.1.3",
"redis": "^4.6.10",
"tailwind-merge": "^2.2.1",
"winston": "^3.11.0",
"winston-loki": "^6.0.8"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.4.6",
"@storybook/blocks": "^7.4.5",
"@storybook/nextjs": "^7.2.0",
"@storybook/react": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "20.8.3",
"@types/react": "18.2.27",
"@types/react-dom": "18.2.7",
"@types/react-tag-input": "^6.6.2",
"autoprefixer": "10.4.16",
"eslint": "8.50.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.0",
"postcss": "8.4.31",
"postcss-nesting": "^12.0.1",
"prettier": "3.0.2",
"storybook": "^7.3.1",
"tailwindcss": "3.3.3",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
}
}