-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.73 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
{
"name": "contentful-nextjs-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "next lint && tsc --noEmit",
"dev": "next dev --turbo",
"docker:start": "./scripts/dev start",
"docker:build": "./scripts/dev build",
"docker:down": "./scripts/dev stop",
"docker:clean": "./scripts/dev clean",
"docker:purge": "./scripts/dev purge",
"docker:check": "./scripts/dev check",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"dev:fresh": "npm run docker:clean && npm run dev:docker-build",
"prepare": "husky",
"test:types": "tsc --noEmit --pretty",
"clean:all": "rm -rf .next node_modules && npm run docker:clean",
"start": "next start",
"preview": "next build && next start"
},
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^17.0.0",
"@contentful/rich-text-react-renderer": "^16.0.0",
"@mux/mux-video-react": "^0.12.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-form": "^0.37.1",
"@tanstack/react-query": "^5.61.3",
"@tanstack/react-query-devtools": "^5.62.2",
"@tanstack/zod-form-adapter": "^0.37.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.13.1",
"geist": "^1.3.0",
"jotai": "^2.10.3",
"jotai-devtools": "^0.10.1",
"lucide-react": "^0.461.0",
"next": "^15.0.1",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.1",
"react-wrap-balancer": "^1.1.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.17.3",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.1",
"husky": "^9.1.7",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.3"
},
"ct3aMetadata": {
"initVersion": "7.38.1"
},
"packageManager": "npm@10.2.0"
}