-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "redux-companion",
"version": "0.8.0",
"description": "A tool to help reducing redux code boilerplate",
"scripts": {
"test": "jest"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/rkkautsar/redux-companion.git"
},
"keywords": [
"redux",
"async",
"react",
"utils",
"es6"
],
"author": "Rakha Kanz nKautsar",
"license": "MIT",
"bugs": {
"url": "https://github.com/rkkautsar/redux-companion/issues"
},
"homepage": "https://github.com/rkkautsar/redux-companion#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@types/jest": "^25.1.0",
"babel-jest": "^25.1.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lerna": "^3.18.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"ts-jest": "^25.0.0"
},
"workspaces": [
"packages/*",
"example"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}