forked from wiziple/gatsby-plugin-intl
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "gatsby-plugin-intl",
"description": "Gatsby plugin to add react-intl onto a site",
"version": "0.1.0",
"author": "Jonathan Forget",
"bugs": {
"url": "https://github.com/Jno21/gatsby-plugin-intl"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@formatjs/intl-pluralrules": "^1.5.2",
"@formatjs/intl-relativetimeformat": "^4.5.9",
"browser-lang": "^0.1.0",
"intl": "^1.2.5",
"react-intl": "^3.12.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"babel-preset-gatsby-package": "^0.2.16",
"cross-env": "^7.0.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
},
"homepage": "https://github.com/wiziple/gatsby-plugin-intl",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-plugin-intl",
"i18n",
"intl",
"react-intl",
"slugs"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.0.0"
},
"repository": "https://github.com/wiziple/gatsby-plugin-intl",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"format": "prettier --write {src,__tests__}/**/*.{js,jsx}",
"test": "jest",
"clean": "rimraf *.js"
}
}