-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.89 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.89 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
{
"name": "formee",
"version": "0.1.0",
"private": true,
"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",
"update-endpoint": "npm install @simplito/privmx-webendpoint@latest && npm run copy-privmx-assets",
"copy-privmx-assets": "mkdir -p public/privmx-assets && cp -r node_modules/@simplito/privmx-webendpoint/assets/* public/privmx-assets/",
"postinstall": "npm run copy-privmx-assets"
},
"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": "^2.2.8",
"@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",
"next-intl": "^3.9.5",
"prettier": "^3.4.1",
"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",
"typescript": "^5"
}
}