-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 KB
/
package.json
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
{
"name": "astro-starter-kit",
"type": "module",
"version": "0.0.1",
"scripts": {
"prepare": "npx simple-git-hooks && npm run generate-schema",
"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\"'",
"lint": "prettier --check .",
"format": "npx prettier . --write"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.0.0",
"@datocms/astro": "^0.3.4",
"@datocms/cda-client": "^0.2.2",
"@datocms/cma-client": "^3.3.5",
"@mux/mux-player": "^2.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^5.0.3",
"datocms-structured-text-generic-html-renderer": "^4.0.1",
"datocms-structured-text-to-plain-text": "^4.0.1",
"gql.tada": "^1.8.5",
"jsdom": "^24.1.1",
"jsonwebtoken": "^9.0.2",
"react": "^18.3.1",
"react-datocms": "^7.0.1",
"react-dom": "^18.3.1",
"serialize-error": "^11.0.3",
"typescript": "^5.5.4"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.6",
"dotenv-cli": "^7.4.2",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
}
}