-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "@blunck/react-i18n",
"version": "0.7.0",
"description": "Simple i18n in react",
"main": "lib/react-i18n.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/alexblunck/react-i18n.git"
},
"keywords": [
"react",
"i18n"
],
"author": "Alexander Blunck",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexblunck/react-i18n/issues"
},
"homepage": "https://github.com/alexblunck/react-i18n#readme",
"dependencies": {
"object-path": "^0.11.4",
"prop-types": "^15.6.0",
"react": "^16.0.0"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.1.5",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"eslint": "5.6.1",
"eslint-plugin-react": "7.11.1",
"webpack": "4.20.2",
"webpack-cli": "3.1.2"
}
}