-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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": "react-i18context",
"version": "0.1.6",
"description": "simple react i18 component",
"main": "dist/index.js",
"homepage": "https://github.com/flyingalex/react-i18context",
"scripts": {
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"test": "jest"
},
"keywords": [
"70 lines",
"use new context api"
],
"author": "flyingalex",
"license": "MIT",
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"prop-types": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"react-test-renderer": "^16.4.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}