-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "@kontent-ai/gatsby-example-resolution",
"description": "Example guide for Kontent.ai rich text components and url resolution in Gatsby.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"develop:preview": "cross-env ENABLE_GATSBY_REFRESH_ENDPOINT=true gatsby develop",
"lint": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0"
},
"dependencies": {
"gatsby": "^5.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"prettier": "2.0.5",
"eslint-config-react-app": "^7.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}