forked from gerhardsletten/react-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "react-reader",
"version": "0.18.2",
"description": "A epub-reader for React powered by ePubJS",
"main": "lib/index.js",
"scripts": {
"compile": "NODE_ENV=production babel --out-dir lib src/modules",
"prepare": "npm run compile",
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "gh-pages-deploy",
"clean-source": "rimraf lib src public .babelrc .eslintrc .npmignore package.json README.md",
"precommit": "pretty-quick --staged",
"format": "prettier --write \"src/**/*.js\"",
"test": "eslint -c .eslintrc src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerhardsletten/react-reader.git"
},
"author": "Eyvind Gerhard Sletten",
"license": "ISC",
"bugs": {
"url": "https://github.com/gerhardsletten/react-reader/issues"
},
"standard": {
"parser": "babel-eslint"
},
"homepage": "https://gerhardsletten.github.io/react-reader",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"gh-pages-deploy": "^0.5.1",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-file-reader-input": "^2.0.0",
"react-scripts": "^3.3.0",
"rimraf": "^3.0.0",
"styled-components": "^4.4.1",
"styled-components-breakpoint": "^2.1.1"
},
"dependencies": {
"epubjs": "^0.3.85",
"prop-types": "^15.7.2",
"react-swipeable": "^5.5.0"
},
"peerDependencies": {
"react": ">=16.12.0"
},
"gh-pages-deploy": {
"staticpath": "build",
"prep": [
"build"
],
"post": [
"clean-source"
],
"noprompt": false
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}