-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "astro-contentful-starter",
"type": "module",
"version": "0.0.1",
"description": "A lean starter template for Astro projects with Contentful CMS integration, TypeScript, and Tailwind CSS",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"type-check": "astro check",
"lint": "eslint . --ext .js,.astro",
"lint:fix": "eslint . --ext .js,.astro --fix",
"contentful:setup": "node scripts/contentful-setup.mjs",
"contentful:seed": "node scripts/contentful-seed.mjs",
"contentful:init": "npm run contentful:setup && npm run contentful:seed"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/ts-plugin": "^0.4.0",
"astro": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.0.0",
"contentful-management": "^11.54.4",
"dotenv": "^17.2.2",
"eslint": "^8.0.0",
"eslint-plugin-astro": "^0.29.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.9.2"
},
"keywords": [
"astro",
"contentful",
"tailwind",
"starter",
"template"
],
"author": "David Martin",
"license": "MIT"
}