forked from altmshfkgudtjr/react-epub-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.58 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
87
88
89
90
91
92
93
94
95
{
"name": "react-epub-viewer",
"version": "0.2.0",
"author": {
"name": "NB",
"email": "[email protected]"
},
"description": "Epub viewer for React.js powered by Epub.js",
"license": "MIT",
"private": false,
"keywords": [
"epub",
"viewer",
"React"
],
"main": "lib/modules/index.js",
"files": [
"lib",
"README.md"
],
"homepage": "https://altmshfkgudtjr.github.io/react-epub-viewer",
"repository": {
"type": "git",
"url": "https://github.com/altmshfkgudtjr/react-epub-viewer"
},
"bugs": {
"url": "https://github.com/altmshfkgudtjr/react-epub-viewer/issues",
"email": "[email protected]"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "react-scripts test --watchAll=false --passWithNoTests",
"build": " react-scripts build",
"test": "react-scripts test",
"clean": "rimraf lib",
"precompile": "react-scripts test --watchAll=false --passWithNoTests && yarn clean",
"compile": "babel src --out-dir lib --extensions .ts,.tsx",
"postcompile": "cp -r ./src/types ./lib/types"
},
"dependencies": {
"epubjs": "0.3.93",
"react-scripts": "5.0.0"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "12.8.3",
"@types/jest": "26.0.24",
"@types/node": "16.11.49",
"@types/react": "17.0.50",
"@types/react-dom": "17.0.17",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.33.1",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.5",
"typescript": "4.7.4"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"types": "lib/types/index.d.ts"
}