-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
50
51
52
53
54
55
{
"name": "gatsby-starter-landing-page",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
".",
"gatsby-theme-landing-page"
],
"version": "1.0.0",
"description": "Gatsby landing page starter built with Contentful",
"scripts": {
"start": "gatsby develop",
"start:refresh": "ENABLE_GATSBY_REFRESH_ENDPOINT=true yarn start",
"refresh": "curl -X POST http://localhost:8000/__refresh",
"setup": "node .contentful/setup.js",
"gatsby-provision": "gatsby-provision-contentful --contentful-data-path='./.contentful/landing-page-model-and-content.json'",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-landing-page.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby-starter-landing-page/issues"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-landing-page#readme",
"dependencies": {
"@fontsource/inter": "^4.5.1",
"gatsby": "^5.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-source-contentful": "^8.0.0",
"gatsby-theme-landing-page": "1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"chalk": "^4.0.0",
"contentful-import": "^8.5.21",
"gatsby-provision-contentful": "^0.0.5",
"husky": ">=6",
"inquirer": "^8.2.0",
"lint-staged": ">=10",
"prettier": "^2.5.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}