forked from rael346/nucarpool
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "nucarpool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:start": "docker-compose -f docker-compose.yml up -d",
"db:stop": "docker-compose -f docker-compose.yml down",
"db:schema": "prisma migrate dev && prisma generate",
"seed": "yarn prisma db seed",
"prepare": "husky install",
"test": "jest",
"vercel-build": "./vercel.sh",
"build:preview": "prisma generate && echo \"y\" | prisma db push && next build && yarn prisma db seed",
"build:main": "prisma generate & next build",
"startup": "yarn db:start && next dev",
"build:development": "NODE_ENV=development prisma generate & next build",
"build:production": "NODE_ENV=production prisma generate & next build"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.378.0",
"@aws-sdk/client-s3": "^3.651.1",
"@aws-sdk/client-ses": "^3.363.0",
"@aws-sdk/credential-provider-env": "^3.363.0",
"@aws-sdk/s3-request-presigner": "^3.651.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@headlessui/react": "^1.6.5",
"@hookform/resolvers": "^2.9.1",
"@mapbox/polyline": "^1.2.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.10.11",
"@mui/x-date-pickers": "^5.0.7",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^4.4.0",
"@sendgrid/mail": "^7.7.0",
"@tanstack/react-query": "^4.29.19",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.33.0",
"@trpc/react": "^9.27.4",
"@trpc/react-query": "^10.33.0",
"@trpc/server": "^10.45.2",
"@types/styled-components": "^5.1.26",
"antd": "^5.22.1",
"axios": "^0.27.2",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.2.0",
"date-fns": "^4.1.0",
"dayjs": "1.11.13",
"envsafe": "^2.0.3",
"lodash": "^4.17.21",
"mapbox-gl": "^2.9.1",
"material-ui": "^0.20.2",
"mixpanel-browser": "^2.55.1",
"next": "^12.2.4",
"next-auth": "^4.22.1",
"node-fetch": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"rc-picker": "^4.8.1",
"rc-trigger": "^5.3.4",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-easy-crop": "^5.1.0",
"react-hook-form": "^7.32.2",
"react-icons": "^5.3.0",
"react-infinite-scroll-component": "^6.1.0",
"react-query": "^3.39.1",
"react-toast-notifications": "^2.5.1",
"react-toastify": "^9.0.4",
"styled-components": "^5.3.6",
"superjson": "^1.9.1",
"tailwind-scrollbar": "^3.1.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"@types/cropperjs": "^1.3.0",
"@types/geojson": "^7946.0.8",
"@types/lodash": "^4.14.182",
"@types/mapbox-gl": "^2.7.3",
"@types/mapbox__polyline": "^1.0.2",
"@types/mixpanel-browser": "^2.50.1",
"@types/node": "18.0.0",
"@types/random-seed": "^0.3.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.0",
"jest": "^29.2.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prisma": "^4.14.1",
"random-seed": "^0.3.0",
"tailwindcss": "^3.1.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
}
}