-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.71 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": "hoagie-mail",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "next start -p $PORT"
},
"resolutions": {
"@types/react": "19.2.2"
},
"overrides": {
"evergreen-ui": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"dependencies": {
"@auth0/nextjs-auth0": "^4.13.0",
"dompurify": "^3.2.7",
"evergreen-ui": "^7.1.9",
"katex": "^0.16.25",
"next": "^16.0.7",
"next-pwa": "^5.6.0",
"quill": "^1.3.7",
"quill-image-resize-module": "^3.0.0",
"quill-image-resize-module-react": "^3.0.0",
"quill-resize-image": "^1.0.11",
"react": "19.2.0",
"react-dom": "19.2.0",
"screenfull": "^6.0.2",
"suneditor": "^2.47.0",
"suneditor-react": "^3.6.1",
"swr": "^2.3.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.0.1",
"@types/react": "19.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"minimatch": "^10.1.1",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": "^22.0.0"
}
}