forked from erichbehrens/react-animated-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "react-animated-slider",
"version": "2.0.0",
"description": "Animated slider component for react",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.pages.js --mode development",
"test": "jest",
"build": "webpack-cli --mode production",
"lint": "eslint src",
"predeploy": "webpack --mode production --config webpack.config.pages.js",
"deploy": "gh-pages -d pages",
"prepublish": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erichbehrens/react-animated-slider.git"
},
"keywords": [
"react",
"component",
"slider",
"gallery",
"slideshow",
"carousel",
"react-component",
"react-slider",
"react-gallery",
"react-slideshow",
"react-carousel",
"image slider",
"image gallery",
"animations"
],
"author": "Erich Behrens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erichbehrens/react-animated-slider/issues"
},
"homepage": "https://github.com/erichbehrens/react-animated-slider#readme",
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.2.0",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^2.1.1",
"highlight.js": "^9.16.2",
"html-webpack-plugin": "^3.2.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}