-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "Flixstack",
"description": "Movie streaming platform starter using Contentstack, Next.js, and Tailwind CSS",
"author": {
"name": "Lo Etheridge",
"email": "lo.etheridge@contentstack.com",
"url": "https://developers.contentstack.com"
},
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed": "ts-node -P tsconfig.json scripts/seed.ts",
"upload-assets": "tsx scripts/upload-assets.ts",
"customize-fields": "node scripts/customize-editor-fields.mjs",
"setup-workflow": "node scripts/setup-workflow.mjs",
"content-governance": "node scripts/content-governance.mjs",
"fix-url-patterns": "node scripts/fix-url-patterns.mjs"
},
"dependencies": {
"@contentstack/delivery-sdk": "^5.2.2",
"@contentstack/live-preview-utils": "^4.4.4",
"@contentstack/management": "^1.30.4",
"@contentstack/utils": "^1.9.1",
"clsx": "^2.1.1",
"framer-motion": "^12.42.1",
"lucide-react": "^1.22.0",
"next": "16.2.9",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.23.0",
"typescript": "^5"
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node"
}
}
}