-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "@illinois/react-use-local-storage",
"version": "1.1.0",
"description": "React hook that persists and syncs state with local storage",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/illinois/react-use-local-storage.git"
},
"keywords": [
"react",
"hooks",
"react-hooks"
],
"author": "Nathan Walters (@nwalters512)",
"license": "MIT",
"bugs": {
"url": "https://github.com/illinois/react-use-local-storage/issues"
},
"homepage": "https://github.com/illinois/react-use-local-storage#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"@types/react": "^16.8.3",
"@types/storybook__react": "^4.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"react": "^16.8.2",
"typescript": "^3.3.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {}
}