-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "@yannickfricke/use-local-storage",
"version": "2.0.2",
"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": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^27.0.3",
"@types/react": "^18.2.15",
"codecov": "^3.8.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "^21.0.7",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5"
},
"files": [
"dist",
"CHANGELOG.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": "^17.0.1"
}
}