forked from femioladeji/react-slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.16 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
{
"name": "react-slideshow-image",
"version": "2.0.1",
"author": "Femi Oladeji",
"description": "An image slideshow with react",
"files": [
"lib",
"dist"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"keywords": [
"image",
"react",
"Image slider",
"Slideshow",
"react",
"fade",
"zoom"
],
"repository": {
"type": "git",
"url": "git+https://github.com/femioladeji/react-slideshow.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^9.4.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.0.6",
"codecov": "^3.1.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.5.3",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"jest": "^26.0.1",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "^12.2.1",
"serve": "^10.0.2",
"style-loader": "^1.2.1",
"uglifycss": "0.0.29",
"webpack": "^4.42.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"lint-staged": {
"{src,__tests__}/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add ."
]
},
"main": "dist/react-slideshow-image.min.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --config webpack.config.dist.js && uglifycss src/css/styles.css > dist/styles.css ",
"heroku-postbuild": "npm i --only=dev && webpack",
"start": "serve docs/",
"precommit": "lint-staged",
"test": "jest && codecov",
"prepublish": "NODE_ENV=production babel src --out-dir lib --copy-files && npm run build"
},
"dependencies": {
"@tweenjs/tween.js": "^18.1.2",
"prop-types": "^15.5.10",
"resize-observer-polyfill": "^1.5.1"
}
}