-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "paperprint-calendar",
"version": "0.1.0",
"private": true,
"author": "Sarka Chwastkova",
"description": "Print your custom calendar!",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:debug": "eslint ./src --debug",
"lint:fix": "eslint ./src --fix",
"husky-prepare": "husky install .husky",
"prepare": "husky",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"test": "jest --coverage"
},
"dependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"iconsax-react": "^0.0.8",
"jest": "^29.7.0",
"next": "14.1.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^18",
"react-calendar": "^4.8.0",
"react-dom": "^18",
"react-hook-form": "^7.51.1",
"react-scroll": "^1.9.0",
"react-to-print": "^2.15.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-plugin-tailwindcss": "^3.15.1",
"lint-staged": "^15.2.4",
"postcss": "^8",
"prettier": "^3.5.2",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vercel": "^34.2.7"
},
"lint-staged": {
"*.{ts,tsx}": "next lint --fix ./src",
"*.{ts,tsx,js,json}": "prettier --cache --write"
},
"resolutions": {
"string-width": "4.2.3"
}
}