forked from microapps/gatsby-plugin-react-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.38 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
{
"name": "gatsby-plugin-react-i18next",
"version": "0.0.27",
"description": "Easily translate your Gatsby website into multiple languages",
"main": "index.js",
"types": "index.d.ts",
"author": "Dmitriy Nevzorov",
"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/microapps/gatsby-plugin-react-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:ts": "babel src --out-dir dist --extensions .ts,.tsx",
"build:defs": "tsc --declaration --outDir dist --emitDeclarationOnly",
"dev": "babel -w src --out-dir dist --extensions .ts,.tsx",
"prepare": "NODE_ENV=production yarn run build:ts && yarn run build:defs",
"format": "prettier --write '**/*.{js,jsx,json,ts,tsx,md}'",
"release": "release-it"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@types/bluebird": "^3.5.32",
"@types/react": "^16.9.43",
"@types/react-helmet": "^6.0.0",
"babel-preset-gatsby-package": "^0.4.6",
"gatsby": "^2.24.8",
"husky": "^4.2.5",
"i18next": "^19.6.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.0",
"release-it": "^13.6.5",
"typescript": "^3.9.7"
},
"dependencies": {
"bluebird": "^3.7.2",
"browser-lang": "^0.1.0",
"glob": "^7.1.6",
"path-to-regexp": "^6.1.0"
},
"peerDependencies": {
"gatsby": "^2.2.0",
"i18next": "^19.4.5",
"react": "^16.12.0",
"react-i18next": "^11.5.0"
},
"optionalDependencies": {
"react-helmet": "^6.1.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"
]
}
}
}