forked from femioladeji/react-slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.88 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
{
"name": "react-slideshow-image",
"version": "1.3.0",
"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.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"codecov": "^3.1.0",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-testing-library": "^5.2.0",
"serve": "^10.0.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"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": "lib/index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --config webpack.config.dist.js",
"heroku-postbuild": "npm i --only=dev && webpack && cp -r src/images public",
"start": "serve public/",
"precommit": "lint-staged",
"test": "jest && codecov",
"prepublishOnly": "NODE_ENV=production babel src/lib --out-dir lib --copy-files && npm run build"
},
"dependencies": {
"@tweenjs/tween.js": "^18.1.2",
"css-loader": "^3.0.0",
"prop-types": "^15.5.10",
"style-loader": "^0.20.2"
}
}