-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
56
57
58
59
60
61
62
{
"name": "gatsby-starter",
"version": "1.2.2",
"description": "Gatsby starter site with Kontent.ai",
"scripts": {
"prepare": "node scripts/ncp.js .env.template .env -u",
"develop": "gatsby develop",
"clean": "gatsby clean",
"build": "gatsby build",
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/gatsby-starter"
},
"keywords": [
"gatsby",
"Gatsby",
"Kontent.ai",
"kontent-ai",
"caas",
"starter",
"Starter"
],
"author": "Jan Lenoch <janl@kentico.com>",
"contributors": [
{
"name": "Ondřej Chrastina",
"email": "ondrej.chrastina@kontent.ai",
"url": "http://ondrej.chrastina.dev"
}
],
"license": "MIT",
"dependencies": {
"@kontent-ai/gatsby-components": "^10.0.0",
"@kontent-ai/gatsby-source": "^10.0.0",
"gatsby": "^5.4.1",
"gatsby-plugin-image": "^3.4.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-react-helmet": "^6.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.0",
"jest": "^29.3.1",
"ncp": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
".cache/"
]
}
}