This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.81 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@bond-london/gatsby-plugin-cms-i18next",
"version": "2.1.0",
"description": "Use CMS languages to generate your Gatsby website",
"main": "index.js",
"types": "index.d.ts",
"author": "Nick Randell <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"gatsby",
"gatsbyjs",
"gatsby-plugin",
"gatsby-component",
"i18next",
"react-i18next",
"gatsby-i18n",
"i18n",
"i18next",
"localization",
"localisation",
"translation",
"translate"
],
"repository": {
"url": "https://github.com/bond-london/gatsby-plugin-cms-i18next"
},
"files": [
"dist",
"index.js",
"index.d.ts",
"gatsby-browser.js",
"gatsby-node.js",
"gatsby-ssr.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc --outDir dist",
"dev": "tsc -w --outDir dist",
"clean": "rimraf dist",
"prepare": "cross-env NODE_ENV=production yarn run lint && yarn run clean && yarn run build && husky install",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md}\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,jsx,ts,tsx}\"",
"release": "release-it",
"test": ""
},
"devDependencies": {
"@types/browser-lang": "^0.1.0",
"@types/react": "^18.0.15",
"@types/react-helmet": "^6.1.4",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby": "^4.18.0",
"husky": "^8.0.1",
"i18next": "^21.8.13",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.0",
"release-it": "^15.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"browser-lang": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"i18next-browser-languagedetector": "^6.1.4",
"outdent": "^0.8.0",
"path-to-regexp": "^6.2.1",
"react-helmet": "^6.1.0",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"gatsby": "^3.x || ^4.x",
"i18next": "^21.x",
"react": "^16.x || ^17.x",
"react-helmet": "^6.x",
"react-i18next": "^11.5.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"yarn run format",
"yarn run prepare"
]
}
}
}