-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "hodux",
"version": "1.0.2",
"description": "The reactivity state management for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": "react-kit/hodux",
"homepage": "https://github.com/react-kit/hodux#readme",
"bugs": {
"url": "https://github.com/react-kit/hodux/issues"
},
"authors": [
"chemdemo <yangdemo@gmail.com> (https://github.com/chemdemo)"
],
"scripts": {
"build": "father build",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"types:check": "tsc --noEmit",
"format": "prettier --write '{src,examples}/**/*.{ts,tsx}'",
"lint": "eslint '{src,examples}/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"test:cov": "npm run test -- --coverage",
"test": "umi-test"
},
"dependencies": {
"@nx-js/observer-util": "^4.2.2",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/invariant": "^2.2.30",
"hoist-non-react-statics": "^3.3.1",
"invariant": "^2.2.4"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@testing-library/dom": "^6.4.1",
"@testing-library/react": "^9.2.0",
"@types/jest": "^24.0.12",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"babel-eslint": "^10.0.2",
"coveralls": "^3.0.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"father": "^2.6.6",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"typescript": "^3.7.2",
"umi-test": "^1.8.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run types:check && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix",
"npm run format",
"git add"
]
},
"license": "MIT"
}