-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.7 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.7 KB
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
{
"name": "react-hover-slideshow",
"version": "3.0.1",
"description": "Iterates through an image slideshow based on cursor position",
"main": "dist/react-hover-slideshow.cjs.js",
"module": "dist/react-hover-slideshow.esm.js",
"scripts": {
"build": "rollup --config",
"start": "storybook dev -p 6006",
"dev": "npm start",
"build-storybook": "storybook build",
"test": "jest --verbose",
"prepare": "npm run build",
"patch": "npm version patch && git push && git push --tags && npm publish",
"minor": "npm version minor && git push && git push --tags && npm publish",
"major": "npm version major && git push && git push --tags && npm publish",
"bump": "npm outdated & npm update && npm audit fix && npm test",
"storybook": "storybook dev -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidcalhoun/react-hover-slideshow.git"
},
"keywords": [
"react",
"hover",
"slideshow"
],
"author": "David Calhoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidcalhoun/react-hover-slideshow/issues"
},
"homepage": "https://github.com/davidcalhoun/react-hover-slideshow#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-export-default-from": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/react-webpack5": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.0.6",
"style-loader": "^3.3.1"
},
"dependencies": {
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"postcss": "^8.4.5",
"postcss-modules": "^4.3.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"optionalDependencies": {
"react-transition-group": "^4.4.1"
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
},
"testEnvironment": "jsdom"
}
}