-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "secret-santa",
"version": "0.1.0",
"packageManager": "[email protected]",
"engines": {
"node": "22.13.0"
},
"scripts": {
"dev": "concurrently 'next dev' 'quirrel'",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "next lint",
"prepare": "husky",
"type-check": "tsc --pretty"
},
"dependencies": {
"@faire/mjml-react": "3.4.0",
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"mjml": "4.15.3",
"next": "15.1.4",
"nodemailer": "6.9.16",
"quirrel": "1.14.1",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@types/mjml": "4.7.4",
"@types/node": "22.10.5",
"@types/nodemailer": "6.4.17",
"@types/react": "19.0.6",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "8.19.1",
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"eslint": "9.18.0",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"null-loader": "4.0.1",
"oxlint": "0.15.6",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}