-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "delta-hackathon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-unknown"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.15",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/lab": "^5.0.0-alpha.161",
"@mui/material": "^5.15.5",
"@prisma/client": "^5.8.1",
"@types/leaflet-routing-machine": "^3.2.8",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.10",
"eslint-config-prettier": "^9.1.0",
"googleapis": "^131.0.0",
"jsonwebtoken": "^9.0.2",
"khalti-checkout-web": "^2.2.0",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-routing-machine": "^3.2.12",
"next": "14.0.4",
"next-auth": "^4.24.5",
"nodemailer": "^6.9.8",
"prettier": "^3.2.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/leaflet": "^1.9.8",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.48",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prisma": "^5.8.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"**/*": [
"yarn format"
]
}
}