-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "@yannickfricke/use-repository",
"version": "2.0.1",
"license": "MIT",
"main": "./dist/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"commit": "git-cz",
"prerelease": "npm run build",
"release": "semantic-release",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@yannickfricke/use-local-storage": "^2.0.1",
"lodash": "^4.17.21",
"react": "^17.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.2",
"codecov": "^3.8.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"semantic-release": "^17.3.9",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"files": [
"dist",
"CHANGELOG.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": "^17.0.1"
}
}