-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
76
77
{
"name": "nivarana.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/inter": "^5.1.0",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@mui/joy": "^5.0.0-beta.48",
"@tinymce/tinymce-react": "^5.1.1",
"bootstrap": "^5.3.3",
"knex": "^3.1.0",
"moment": "^2.30.1",
"mysql": "^2.18.1",
"next": "15.1.3",
"next-auth": "^5.0.0-beta.25",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-share": "^5.1.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"use-debounce": "^10.0.4",
"web-push": "^3.6.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.1.4"
},
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"sonner": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"react-share": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"@tinymce/tinymce-react": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"next-auth": {
"react": "19.0.0",
"react-dom": "19.0.0"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}