forked from femioladeji/react-slideshow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.94 KB
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
{
"name": "react-slideshow-overlay",
"version": "1.1.7",
"author": "Femi Oladeji",
"description": "An image slideshow with react",
"keywords": [
"image",
"react",
"Image slider",
"Slideshow",
"react",
"fade",
"zoom"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IsaacLessard/react-slideshow.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.1.0",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"jest": "^23.6.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.20.2",
"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": "npm i --only=dev && webpack && cp -r src/images dist",
"heroku-postbuild": "npm run build",
"start": "serve dist/",
"precommit": "lint-staged",
"test": "jest && codecov",
"prepublishOnly": "NODE_ENV=production babel src/lib --out-dir lib --copy-files --ignore *.test.js"
},
"dependencies": {
"@tweenjs/tween.js": "^17.2.0",
"babel": "^6.23.0",
"css-loader": "^0.28.10",
"prop-types": "^15.5.10",
"style-loader": "^0.20.2"
}
}