-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
68 lines (68 loc) · 2.31 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
63
64
65
66
67
68
{
"name": "redux-cube-with-i18next",
"version": "1.2.0",
"description": "redux-cube's pluggable module for react-i18next",
"author": "dexteryy <[email protected]>",
"contributors": [],
"bugs": {
"url": "https://github.com/dexteryy/Project-WebCube/issues"
},
"homepage": "https://github.com/dexteryy/Project-WebCube/tree/master/packages/redux-cube-with-i18next",
"repository": "https://github.com/dexteryy/Project-WebCube/tree/master/packages/redux-cube-with-i18next",
"license": "MIT",
"webcube:module": "src/index.js",
"module": "es6/index.js",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist/**/*",
"es6/**/*"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run clear && npm run build:dist && npm run build:es6",
"build:dist": "BABEL_ENV=dist babel src --out-dir dist",
"build:es6": "babel src --out-dir es6",
"clear": "rm -r dist es6 2>/dev/null || true"
},
"dependencies": {
"i18next": "^15.0.1",
"i18next-browser-languagedetector": "^3.0.0",
"i18next-xhr-backend": "^2.0.0",
"lodash": "^4.17.11",
"react-i18next": "^10.0.4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-graphql-tag": "^1.6.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-ramda": "^2.0.0",
"babel-plugin-styled-components": "^1.8.0",
"fast-async": "^7.0.0"
},
"keywords": [
"redux",
"redux-cube",
"i18n",
"i18next",
"boilerplate",
"webcube"
]
}