forked from wiziple/gatsby-plugin-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "gatsby-plugin-intl",
"description": "Gatsby plugin to add react-intl onto a site",
"version": "5.8.1",
"author": "Daewoong Moon <[email protected]>",
"bugs": {
"url": "https://github.com/wiziple/gatsby-plugin-intl"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@formatjs/intl-pluralrules": "^5.1.10",
"@formatjs/intl-relativetimeformat": "^11.1.10",
"browser-lang": "^0.2.1",
"intl": "^1.2.5",
"react-intl": "^6.3.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"babel-preset-gatsby-package": "^3.8.0",
"cross-env": "^7.0.3",
"jest": "^25.5.4",
"prettier": "^2.8.7",
"rimraf": "^4.4.1"
},
"homepage": "https://github.com/wiziple/gatsby-plugin-intl",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-plugin-intl",
"i18n",
"intl",
"react-intl"
],
"license": "MIT",
"main": "index.js",
"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",
"test": "jest",
"clean": "rimraf *.js"
}
}