forked from leandronorcio/munia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.42 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
{
"name": "munia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"svgr": "npx @svgr/cli --icon --no-prettier --out-dir ./src/svg_components --ignore-existing --typescript -- ./src/vectors && npx prettier ./src/svg_components --write",
"prisma:deploy": "npx prisma migrate deploy",
"prisma:seed": "npx prisma migrate reset && node ./scripts/createMockUsers.mjs",
"prepm2": "npm run build",
"pm2": "pm2 start next --name 'munia' -- start -p 3002"
},
"dependencies": {
"@auth/core": "^0.18.0",
"@auth/prisma-adapter": "^1.0.0",
"@aws-sdk/client-s3": "^3.405.0",
"@aws-sdk/client-ses": "^3.441.0",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@hookform/resolvers": "^3.3.1",
"@internationalized/date": "^3.4.0",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.0.0",
"@react-aria/toast": "^3.0.0-beta.3",
"@react-aria/utils": "^3.19.0",
"@react-stately/toast": "^3.0.0-beta.1",
"@tanstack/react-query": "^5.0.0-beta.16",
"@tanstack/react-query-devtools": "^5.0.0-beta.16",
"@types/lodash": "^4.14.195",
"@types/node": "18.15.11",
"@types/react": "^18.0.37",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"eslint": "8.38.0",
"eslint-config-next": "^14.0.1",
"framer-motion": "^10.12.17",
"html-react-parser": "^4.2.0",
"lodash": "^4.17.21",
"next": "^14.0.3-canary.2",
"next-auth": "^5.0.0-beta.3",
"nodemailer": "^6.9.3",
"postcss": "8.4.22",
"react": "^18.2.0",
"react-aria": "^3.27.0",
"react-datepicker": "^4.15.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-stately": "^3.25.0",
"server-only": "^0.0.1",
"swiper": "^9.4.1",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@svgr/cli": "^7.0.0",
"@types/dompurify": "^3.0.2",
"@types/uuid": "^9.0.2",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"prisma": "^5.0.0"
}
}