-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.2 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
{
"name": "cck-volunteer-app",
"version": "0.1.0",
"private": true,
"license": "CC BY-NC-SA 4.0",
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"create-schema-migration": "./scripts/create-schema-migration.sh",
"seed-db": "./scripts/run-ts.sh ./prisma/seed.ts",
"publish": "vercel",
"vercel-build": "./scripts/vercel-build.sh"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.154.0",
"@chakra-ui/icons": "^2.0.8",
"@chakra-ui/react": "^2.2.8",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@googlemaps/google-maps-services-js": "^3.3.16",
"@prisma/client": "^4.16.1",
"@upstash/ratelimit": "^0.1.5",
"@upstash/redis": "^1.13.1",
"classnames": "^2.3.1",
"cookies-next": "^2.1.1",
"dayjs": "^1.11.5",
"formik": "^2.2.9",
"framer-motion": "^6.5.1",
"graphql-request": "^4.3.0",
"jose": "^4.9.2",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"nanoid": "^5.0.4",
"next": "12.2.5",
"next-seo": "^5.5.0",
"otplib": "^12.0.1",
"polyline-encoded": "^0.0.9",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react18-otp-input": "^1.0.3",
"sass": "^1.54.5",
"sql-template-strings": "^2.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vercel/node": "^2.5.14",
"dotenv": "^16.0.2",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.2.5",
"eslint-config-right-align": "^0.1.5",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"prisma": "^4.16.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}