-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "hox",
"version": "1.1.2",
"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/jest-dom": "^4.0.0",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.18",
"@types/node": "^10.12.24",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-test-renderer": "^16.8.0",
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"husky": "^3.0.9",
"jest": "^24.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.8.0",
"rollup": "^1.21.4",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react-reconciler": "^0.18.0",
"react-reconciler": "^0.25.1",
"use-action": "^1.0.2"
}
}