-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "adays",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"node websocket-server.js\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"size": "npx size-limit",
"ws-server": "node websocket-server.js"
},
"dependencies": {
"@mantine/carousel": "^7.12.2",
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@prisma/client": "^5.19.1",
"@tabler/icons-react": "^3.17.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"concurrently": "^6.0.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lodash.debounce": "^4.0.8",
"next": "14.2.11",
"node-cron": "^3.0.3",
"openai": "^4.62.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"styled-components": "^5.3.11",
"ws": "^8.18.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"@next/bundle-analyzer": "^14.2.13",
"@types/react": "^18.3.7",
"@types/styled-components": "^5.1.34",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.11",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.12",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.6.2"
}
}