-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.92 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
57
{
"name": "astro-starter-kit",
"type": "module",
"version": "0.0.2",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"prepare": "npx simple-git-hooks && npm run generate-schema && npm run generate-cma-types",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"generate-schema": "dotenv -c -- bash -c 'gql.tada generate schema https://graphql.datocms.com --header \"X-Exclude-Invalid: true\" --header \"Authorization: $DATOCMS_PUBLISHED_CONTENT_CDA_TOKEN\" && gql.tada generate-output'",
"generate-cma-types": "dotenv -c -- bash -c 'npx datocms schema:generate --api-token=$DATOCMS_CMA_TOKEN src/lib/datocms/cma-types.ts'",
"lint": "prettier --check .",
"format": "npx prettier . --write"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/react": "^6.0.1",
"@astrojs/vercel": "^11.0.3",
"@datocms/astro": "^0.6.13",
"@datocms/cda-client": "^0.3.1",
"@datocms/cma-client": "^6.1.0",
"@mux/mux-player": "^3.13.0",
"@mux/mux-player-react": "^3.13.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"astro": "^7.0.9",
"datocms-plugin-sdk": "^2.1.5",
"datocms-react-ui": "^2.1.5",
"datocms-structured-text-generic-html-renderer": "^6.0.0",
"datocms-structured-text-to-plain-text": "^6.0.0",
"gql.tada": "^1.9.0",
"jsonwebtoken": "^9.0.3",
"node-html-parser": "^7.0.1",
"react": "^19.2.3",
"react-datocms": "^8.0.5",
"react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.10",
"@types/jsdom": "^27.0.0",
"@types/jsonwebtoken": "^9.0.10",
"datocms": "^4.0.26",
"dotenv-cli": "^11.0.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
}
}