-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "gatsby-multilingual-blog",
"private": true,
"description": "A quick blog starter with Gatsby",
"version": "0.1.0",
"author": "Toshiki Kamei",
"dependencies": {
"gatsby": "4.17.2",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^2.17.0",
"gatsby-plugin-manifest": "^4.17.0",
"gatsby-plugin-offline": "^5.17.0",
"gatsby-plugin-react-helmet": "^5.17.0",
"gatsby-plugin-react-i18next": "^2.0.1",
"gatsby-plugin-sharp": "^4.17.0",
"gatsby-plugin-styled-components": "^5.17.0",
"gatsby-plugin-typescript": "^4.17.0",
"gatsby-plugin-typescript-checker": "^1.1.1",
"gatsby-plugin-webfonts": "^2.2.2",
"gatsby-remark-autolink-headers": "^5.18.0",
"gatsby-remark-copy-linked-files": "^5.17.0",
"gatsby-remark-images": "^6.17.0",
"gatsby-remark-prismjs": "^6.17.0",
"gatsby-remark-responsive-iframe": "^5.17.0",
"gatsby-remark-smartypants": "^5.17.0",
"gatsby-source-filesystem": "^4.17.0",
"gatsby-transformer-remark": "^5.17.0",
"gatsby-transformer-sharp": "^4.17.0",
"graphql": "^16.5.0",
"i18next": "^21.8.12",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^11.17.4",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/i18next": "^13.0.0",
"@types/node": "^18.0.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/styled-components": "^5.1.25",
"@welldone-software/why-did-you-render": "^7.0.1",
"babel-jest": "^28.1.2",
"babel-plugin-styled-components": "^2.0.7",
"babel-preset-gatsby": "^2.17.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"i18n": "ts-node -O '{\"module\": \"commonjs\"}' ./locales/index.ts",
"start": "gatsby develop -H 0.0.0.0",
"develop": "gatsby develop -H 0.0.0.0",
"serve": "gatsby serve -H 0.0.0.0",
"build": "gatsby build",
"clean": "gatsby clean",
"test": "jest",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"update": "yarn upgrade-interactive --latest"
},
"repository": {
"type": "git",
"url": "https://github.com/Zett-8/gatsby-multilingual-blog"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}