-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "tina-gatsby-starter",
"version": "1.0.0",
"private": true,
"description": "tina-gatsby-starter",
"author": "Hugo Pernet",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "tinacms dev -c \"gatsby develop\"",
"start": "gatsby develop",
"build": "gatsby clean && tinacms build && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"gatsby": "^5.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tinacms": "^2.5.1"
},
"devDependencies": {
"@tinacms/cli": "^1.6.13",
"@types/node": "^22.10.2",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"gatsby-plugin-postcss": "^6.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"resolutions": {
"graphql": "^15.9.0"
},
"overrides": {
"graphql": "^15.9.0"
}
}