-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "chatee",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:standalone": "BUILD=True next build && cp -r ./public ./.next/standalone && cp -r ./.next/static ./.next/standalone/.next/",
"start:standalone": "node ./.next/standalone/server.js",
"rebuild:standalone": "rm -rd ./.next && npm run build:standalone"
},
"dependencies": {
"@mantine/core": "^7.5.3",
"@mantine/dates": "^7.5.3",
"@mantine/hooks": "^7.5.3",
"@mantine/modals": "^7.5.3",
"@mantine/notifications": "^7.5.3",
"@simplito/privmx-webendpoint-sdk": "2.0.4",
"@tabler/icons-react": "^2.47.0",
"bs58check": "^3.0.1",
"dayjs": "^1.11.10",
"elliptic": "^6.5.4",
"jose": "^5.2.4",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"next": "^14.2.4",
"next-intl": "^3.9.5",
"react": "^18",
"react-dom": "^18",
"react-virtuoso": "^4.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bs58check": "^2.1.2",
"@types/elliptic": "^6.4.18",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.35",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"typescript": "^5"
}
}