-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.54 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
57
58
59
60
61
{
"name": "readlog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.6.0",
"@prisma/client": "^7.6.0",
"next": "16.2.2",
"next-auth": "^5.0.0-beta.30",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.0",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prisma": "^7.6.0",
"ts-jest": "^29.4.9",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}