-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-class-hookable",
"version": "0.3.1",
"main": "./index.js",
"author": "Jimmy.Harding",
"description": "the purpose of this project is helping people use react hooks in class component",
"scripts": {
"build": "webpack --config ./webpack.config.js --env.mode=production",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/filefoxper/react-class-hookable"
},
"files": [
"dist",
"index.js",
"index.d.ts"
],
"keywords": [
"react",
"hook",
"class",
"class-component",
"class-component-hook",
"component",
"hook in class component",
"typescript",
"browser",
"front-end"
],
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/runtime": "7.3.0",
"@babel/preset-env": "^7.5.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-proposal-pipeline-operator": "7.3.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@types/react": "16.8.25",
"@types/react-dom": "^16.8.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"jest": "^26.0.1",
"@types/jest": "^26.0.0",
"@types/react-test-renderer": "^16.0.3",
"@types/rewire": "2.5.28",
"rewire": "5.0.0",
"core-js": "^3.6.5",
"babel-plugin-rewire-ts": "1.3.3",
"react-test-renderer": "^17.0.1",
"identity-obj-proxy": "^3.0.0",
"typescript": "^3.8.3",
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"ts-jest": "^24.0.2",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"webpack-cli": "3.3.5",
"webpack": "4.35.3",
"babel-loader": "^8.0.6",
"ts-loader": "^6.0.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"@testing-library/react": "^11.1.0",
"@testing-library/dom": "^7.26.3",
"jest-dom": "^4.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}