forked from wiziple/gatsby-plugin-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "gatsby-plugin-intl",
"description": "Gatsby plugin to add react-intl onto a site",
"version": "0.3.2",
"author": "Daewoong Moon <[email protected]>",
"bugs": {
"url": "https://github.com/wiziple/gatsby-plugin-intl"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@formatjs/intl-pluralrules": "^1.3.1",
"@formatjs/intl-relativetimeformat": "^4.2.1",
"browser-lang": "^0.1.0",
"intl": "^1.2.5",
"react-intl": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"babel-preset-gatsby-package": "^0.2.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3"
},
"homepage": "https://github.com/wiziple/gatsby-plugin-intl",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-plugin-intl",
"i18n",
"intl",
"react-intl"
],
"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": "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"
}
}