-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.01 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
{
"name": "@soubhikchatterjee/react-pdf",
"version": "0.1.27",
"author": "Soubhik Chatterjee <[email protected]>",
"contributors": [
{
"name": "Soubhik Chatterjee",
"email": "[email protected]",
"url": "https://soubhik.chatterjee.pw"
}
],
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"babel": {
"presets": [
"@babel/react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-proposal-optional-chaining"
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/soubhikchatterjee/react-pdf.git"
},
"bugs": {
"url": "https://github.com/soubhikchatterjee/react-pdf/issues"
},
"keywords": [
"pdf viewer",
"zoom pdf page",
"rotate pdf page",
"scroll pdf pages",
"rearrange pdf pages"
],
"scripts": {
"start": "react-scripts start",
"build:dev": "NODE_ENV=production react-scripts build",
"build": "rm -rf dist && mkdir dist && babel src -d dist --copy-files",
"publish:npm": "npm run build && npm publish --access public"
},
"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"
]
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"babel-preset-react-app": "^10.0.0",
"node-sass": "^5.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"pdfjs-dist": "^2.6.347",
"react-tooltip": "^4.2.15"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-scripts": "4.0.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
}
}