forked from hupe1980/gatsby-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "gatsby-plugin-i18next",
"description": "Gatsby plugin that provides i18n support",
"version": "1.0.1",
"author": "[email protected]",
"repository": "ikhudo/gatsby-plugin-i18next",
"keywords": [
"react",
"gatsby",
"gatsby-plugin",
"gatsby-component",
"lingui",
"i18n"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build",
"build:watch": "rimraf lib && babel -w src --out-dir lib --ignore __tests__"
},
"dependencies": {
"cross-env": "^5.2.0",
"i18next": "^11.6.0",
"react-helmet": "^5.2.0",
"react-i18next": "^7.10.1"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"gatsby": "next",
"rimraf": "^2.6.2"
},
"publishConfig": {
"access": "public"
}
}