-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "@kontent-ai/gatsby-starter-kontent-hello-world",
"private": true,
"description": "A simplified bare-bones testing site for Gatsby",
"version": "0.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/gatsby-packages"
},
"bugs": {
"url": "https://github.com/kontent-ai/gatsby-packages/issues"
},
"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,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"No tests written! -> https://gatsby.dev/unit-testing\" && exit 0"
},
"dependencies": {
"@kontent-ai/delivery-sdk": "^12.4.2",
"gatsby": "^5.2.0",
"gatsby-plugin-image": "^3.2.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.8.1",
"babel-eslint": "^10.1.0"
}
}