-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 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
72
73
74
75
76
77
{
"name": "react-airbnb-carousel",
"version": "0.0.13",
"description": "Airbnb like carousel built with React.js",
"private": false,
"keywords": [
"react",
"image",
"carousel",
"airbnb",
"slider"
],
"main": "dist/AirbnbCarousel.js",
"homepage": "https://github.com/jungdj/react-airbnb-carousel",
"repository": {
"type": "git",
"url": "https://github.com/jungdj/react-airbnb-carousel.git"
},
"files": [
"dist"
],
"author": "Dongjin Jung <[email protected]> (https://github.com/jungdj)",
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn build",
"build:clean": "rimraf dist",
"build": "yarn build:clean && webpack",
"lint:css": "stylelint './src/**/*.{js,jsx}'"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"eslint --fix",
"stylelint"
]
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.0.10",
"lint-staged": "^10.0.0",
"rimraf": "^3.0.0",
"stylelint": "^12.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-lazyload": "2.6.5",
"react-powerplug": "1.0.0",
"react-swipeable-views": "0.12.16",
"react-swipeable-views-utils": "0.12.16"
}
}