-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "anibalsantosgomez.film",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "TINA_PUBLIC_IS_LOCAL=true tinacms dev -c \"next dev\"",
"build": "tinacms build && next build",
"start": "next start",
"lint": "next lint",
"pretty": "prettier --write .",
"prepare": "husky install",
"resize": "node ./src/scripts/resize.mjs"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@hookform/resolvers": "^3.3.4",
"@tinacms/auth": "^1.0.4",
"clsx": "^2.0.0",
"framer-motion": "^10.16.16",
"next": "14.0.4",
"next-themes": "^0.2.1",
"next-tinacms-s3": "^1.3.13",
"nodemailer": "^6.9.8",
"photoswipe": "^5.4.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-swipeable": "^7.0.1",
"react-wrap-balancer": "^1.1.0",
"sonner": "^1.3.1",
"tinacms": "^1.5.28",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tinacms/cli": "^1.5.39",
"@types/node": "^20.10.4",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"sharp": "^0.33.1",
"tailwind-heropatterns": "^0.0.8",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.3.0",
"tailwindcss-fluid-type": "^2.0.3",
"typescript": "^5"
},
"lint-staged": {
"*.js,ts,tsx,": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}