-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "gdsc-iiitl-official",
"version": "0.1.0",
"description": "Official website of GDSC IIIT Lucknow",
"author": "DSC-IIITL",
"license": "MIT",
"repository": "https://github.com/dsc-iiitl/gdsc-iiitl-official",
"private": false,
"scripts": {
"dev": "next dev -p 80",
"build": "prisma generate & next build",
"start": "next start -p 80",
"lint": "next lint",
"start:prisma": "dotenv -e .env.local -- yarn prisma studio",
"format": "prettier --write src/",
"eslint:lint": "eslint src/",
"eslint:fix": "eslint --fix src/",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix src/",
"prettier --write src/",
"git add"
]
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.2",
"@mui/lab": "^5.0.0-alpha.146",
"@mui/material": "^5.14.11",
"@mui/x-data-grid": "^6.18.6",
"@mui/x-date-pickers": "^6.18.6",
"@prisma/client": "^5.7.1",
"axios": "^1.6.4",
"bcrypt": "^5.1.1",
"dayjs": "^1.11.10",
"google-auth-library": "^9.4.1",
"googleapis": "^126.0.1",
"jsonwebtoken": "^9.0.2",
"next": "^14.0.4",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"bson": "^6.1.0",
"encoding": "^0.1.13",
"eslint": "^8.50.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prisma": "^5.7.1",
"typescript": "latest"
}
}