-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "next-i18next",
"version": "0.3.1",
"main": "dist/index.js",
"repository": "[email protected]:isaachinman/next-i18next.git",
"author": "Isaac Hinman <[email protected]>",
"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"
}
}