-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@tasoskakour/use-persisted-reducer",
"author": {
"name": "Tasos Kakouris",
"email": "[email protected]",
"website": "https://tasoskakour.com"
},
"keywords": [
"react",
"hooks",
"typescript",
"useReducer"
],
"version": "1.0.8",
"description": "Enhance useReducer with persistence to local/session storage (with ttl support).",
"license": "MIT",
"homepage": "https://github.com/tasoskakour/use-persisted-reducer#readme",
"bugs": {
"url": "https://github.com/tasoskakour/use-persisted-reducer/issues"
},
"repository": "github:tasoskakour/use-persisted-reducer",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rollup -c",
"test": "npm run lint && start-server-and-test storybook-ci :6006 jest",
"lint": "eslint . --cache",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"storybook-ci": "start-storybook --ci -p 6006",
"build-storybook": "build-storybook"
},
"browserslist": {
"production": [
">1%",
"not dead",
"not op_mini all",
"not ie > 0",
"not ie_mob > 0"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.1.21",
"@storybook/testing-library": "^0.0.9",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"eslint": "^8.10.0",
"eslint-config-tasoskakour-typescript-prettier": "^2.0.5",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"lint-staged": "^12.3.5",
"puppeteer": "^13.5.1",
"react-dom": "^17.0.2",
"rollup": "^2.69.2",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"source-map-explorer": "^2.5.2",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
},
"publishConfig": {
"access": "public"
}
}