-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "use-memory-storage",
"version": "0.0.2",
"description": "React hooks for memory storage is sharing session storage between multiple tabs.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && mkdirp dist && rollup -c",
"lint": "eslint -c .eslintrc.js --fix './src/**/*.ts{,x}'",
"prepare": "npm run precommit && npm run build",
"precommit": "npm run lint"
},
"keywords": [
"react",
"hooks",
"memory storage",
"shared storage",
"session storage",
"local storage"
],
"author": "wonism <[email protected]> (https://wonism.github.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/use-memory-storage.git"
},
"bugs": {
"url": "https://github.com/wonism/use-memory-storage/issues"
},
"homepage": "https://github.com/wonism/use-memory-storage#readme",
"license": "MIT",
"peerDependencies": {
"react": "^16.10.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime-corejs2": "^7.6.2",
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.5.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.4",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.1",
"husky": "^3.0.7",
"mkdirp": "^1.0.4",
"react": "^16.8.6",
"react-dom": "^16.10.1",
"rimraf": "^3.0.0",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.9.7"
},
"dependencies": {}
}