Files
next-i18next/package.json
2018-11-25 23:41:45 -08:00

63 lines
1.6 KiB
JSON

{
"name": "next-i18next",
"version": "0.3.1",
"main": "dist/index.js",
"repository": "git@github.com:isaachinman/next-i18next.git",
"author": "Isaac Hinman <isaac@isaachinman.com>",
"license": "MIT",
"engines": {
"node": ">=9"
},
"description": "The easiest way to translate your NextJs apps.",
"keywords": [
"react",
"i18next",
"nextjs",
"next",
"translation",
"localisation",
"localization",
"locale"
],
"scripts": {
"start": "babel-node ./src/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "babel src --out-dir dist",
"prepare": "yarn build",
"run-example": "yarn build && cd example && yarn && yarn dev"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.4"
},
"dependencies": {
"detect-node": "^2.0.4",
"i18next": "^12.0.0",
"i18next-browser-languagedetector": "^2.2.4",
"i18next-express-middleware": "^1.5.0",
"i18next-node-fs-backend": "^2.1.0",
"i18next-xhr-backend": "^1.5.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-i18next": "^8.3.8"
}
}