-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "react-hero-carousel",
"version": "0.0.0-development",
"description": "A bold, no-config hero banner carousel for landing pages implemented without external dependencies in React",
"keywords": [
"react",
"react-component",
"carousel",
"gallery",
"slider",
"responsive"
],
"main": "dist/index.js",
"repository": "[email protected]:yanneves/react-hero-carousel",
"author": "Yann Eves <[email protected]>",
"license": "MIT",
"scripts": {
"semantic-release": "semantic-release",
"prepublish": "babel src -d dist --copy-files --source-maps",
"lint": "eslint \"./**/*.{js,jsx}\" --cache",
"storybook": "start-storybook",
"build": "build-storybook",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@storybook/addon-storyshots": "^6.2.9",
"@storybook/addon-storysource": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/source-loader": "^6.2.9",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"reset-css": "^5.0.1",
"semantic-release": "^19.0.3",
"webpack": "^5.37.0",
"webpack-merge": "^5.7.3"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0"
}
}