-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.53 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
62
63
64
65
66
67
{
"name": "code-wizards",
"version": "0.9.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"format": "prettier . --write",
"prepare": "husky install",
"commit": "git add -A && npm run lint-staged && git diff --quiet && git add -A && cz"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@next/third-parties": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@upstash/ratelimit": "^1.0.1",
"@vercel/kv": "^1.0.1",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"dotenv": "^16.4.3",
"next": "^14.1.0",
"nodemailer": "^6.9.9",
"normalize.css": "^8.0.1",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.50.0",
"react-intersection-observer": "^9.8.1",
"sharp": "^0.33.2",
"swiper": "^11.0.6",
"yup": "^1.3.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"sass": "^1.71.1",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"prettier --write",
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}