forked from Avaiga/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.9 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nextjs-ts-tailwind-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc",
"lint": "next lint & npm run lint:md",
"lint:md": "markdownlint --ignore-path .gitignore . --config ./markdownlint-config.js",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore . --config ./markdownlint-config.js",
"format": "prettier --write \"**/*.{css,js,jsx,ts,tsx,json}\"",
"update-git-hooks": "npx simple-git-hooks",
"deploy-graphql": "sanity graphql deploy",
"prepare": "npm run update-git-hooks"
},
"dependencies": {
"@calcom/embed-react": "^1.4.0",
"@hookform/resolvers": "^3.3.4",
"@portabletext/react": "^3.0.15",
"@react-hook/throttle": "^2.2.0",
"@sanity/client": "^6.15.7",
"@sanity/code-input": "^4.1.3",
"@sanity/icons": "^2.11.4",
"@sanity/image-url": "^1.0.2",
"@sanity/table": "^1.1.2",
"@sanity/vision": "^3.36.2",
"@shikijs/transformers": "^1.2.4",
"@types/react-slick": "^0.23.13",
"date-fns": "^3.6.0",
"esbuild": "^0.20.2",
"framer-motion": "^11.0.8",
"get-youtube-id": "^1.0.1",
"graphql-request": "^6.1.0",
"next": "^14.1.3",
"next-sanity": "^7.1.4",
"next-sitemap": "^4.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.1",
"react-intersection-observer": "^9.8.1",
"react-lite-youtube-embed": "^2.4.0",
"react-paginate": "^8.2.0",
"react-share": "^5.1.0",
"react-slick": "^0.30.2",
"rss": "^1.2.2",
"sanity": "^3.36.2",
"sanity-plugin-iframe-pane": "^3.1.6",
"sanity-plugin-media": "^2.2.5",
"sharp": "^0.33.2",
"shiki": "^1.2.4",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.8",
"tailwindcss-safe-area": "^0.5.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.12",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"autoprefixer": "^10.4.18",
"clsx": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"file-loader": "^6.2.0",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.39.0",
"postcss": "^8.4.35",
"postcss-import": "^16.0.1",
"postcss-nesting": "^12.1.0",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.3.0",
"simple-git-hooks": "^2.10.0",
"svgo-loader": "^4.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"url-loader": "^4.1.1"
}
}