-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "hox",
"version": "1.1.5",
"main": "index.js",
"description": "React store with hooks.",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": ">=16.8.0"
},
"scripts": {
"build": "gulp build",
"test": "jest",
"lint": "tslint -p tsconfig.json",
"umd": "rollup --config rollup.config.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/node": "^12.20.37",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"ahooks": "^2.9.6",
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"husky": "^3.0.9",
"jest": "^27.4.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^1.21.4",
"ts-jest": "^27.0.7",
"tslint": "^5.18.0",
"typescript": "~3.8.0"
},
"dependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react-reconciler": "^0.26.4",
"react-reconciler": "^0.26.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}