-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
{
"name": "nextjs-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.4.5",
"@mui/material": "^6.4.3",
"@mui/x-data-grid": "^7.26.0",
"@prisma/client": "^6.4.1",
"dayjs": "^1.11.13",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"mongoose": "^8",
"next": "^15.2.1",
"nodemailer": "^6.10.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@prisma/client": "^6.4.1",
"@types/jest": "^29.5.14",
"@types/jspdf": "^1.3.3",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"husky": "^9",
"jest": "^29.7.0",
"lint-staged": "^15",
"prettier": "^3.4.2",
"prisma": "^6.4.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}