forked from gerhardsletten/react-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.06 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
{
"name": "react-reader",
"version": "0.19.0",
"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.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/react": "^16.9.51",
"csstype": "^3.0.3",
"gh-pages-deploy": "^0.5.1",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-file-reader-input": "^2.0.0",
"react-scripts": "^3.4.3",
"rimraf": "^3.0.2",
"styled-components": "^5.2.0",
"styled-components-breakpoint": "^2.1.1",
"typescript": "^4.0.3"
},
"dependencies": {
"epubjs": "^0.3.88",
"prop-types": "^15.7.2",
"react-swipeable": "^5.5.1"
},
"peerDependencies": {
"react": ">=16.13.1"
},
"gh-pages-deploy": {
"staticpath": "build",
"prep": [
"build"
],
"post": [
"clean-source"
],
"noprompt": false
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"types": "types/index.d.ts"
}