-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "kickstart-veda",
"version": "1.0.10",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/timbenniks/kickstart-veda"
},
"description": "Contentstack Kickstarts are the minimum amount of code needed to connect to Contentstack.",
"author": "Tim Benniks <tim.benniks@contentstack.com>",
"homepage": "https://contentstack.com",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"update-launch-config": "node updateLaunchConfig.mjs",
"prebuild": "npm run update-launch-config"
},
"dependencies": {
"@contentstack/delivery-sdk": "^5.2.0",
"@contentstack/live-preview-utils": "^4.4.0",
"@timbenniks/contentstack-endpoints": "^3.0.2",
"dotenv": "^17.3.1",
"isomorphic-dompurify": "^3.6.0",
"lucide-react": "^0.577.0",
"next": "^16.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16",
"tailwindcss": "^4",
"typescript": "^5"
}
}