-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1020 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1020 Bytes
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
{
"name": "kickstart-nuxt",
"version": "1.0.2",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/contentstack/kickstart-nuxt"
},
"description": "Contentstack Kickstarts are the minimum amount of code needed to connect to Contentstack to Nuxt.",
"author": "Tim Benniks <tim.benniks@contentstack.com>",
"annotation": "Lo Etheridge <lo.etheridge@contentstack.com>",
"homepage": "https://contentstack.com",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"start": "node .output/server/index.mjs",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@contentstack/delivery-sdk": "^4.7.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@timbenniks/contentstack-endpoints": "^1.0.10",
"nuxt": "^3.17.4",
"vue": "latest",
"vue-router": "latest"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"@types/node": "^22.15.21"
}
}