-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "starter-rp-react-ts-webpack",
"version": "1.0.0",
"description": "Welcome to the React PDF Kit Starter Toolkit! This repository provides a comprehensive guide on integrating React PDF with React, TypeScript and Webpack. It showcases how React PDF can be integrated and rendered as part of a React.js project.",
"main": "index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js --mode production",
"tscheck": "tsc",
"start": "webpack serve --mode development --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"copy-webpack-plugin": "^13.0.1",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"babel-loader": "9.2.1",
"css-loader": "7.1.2",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.3",
"style-loader": "4.0.0",
"typescript": "5.7.3",
"webpack": "^5.105.3",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"dependencies": {
"@react-pdf-kit/viewer": "latest",
"pdfjs-dist": "5.4.624",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"overrides": {
"pdfjs-dist": "5.4.624"
},
"pnpm": {
"overrides": {
"pdfjs-dist": "5.4.624"
}
},
"resolutions": {
"pdfjs-dist": "5.4.624"
}
}