forked from react-pdf-viewer/react-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.56 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-pdf-viewer/root",
"version": "0.0.0",
"description": "A React component to view a PDF document",
"license": "https://react-pdf-viewer.dev/license",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "[email protected]",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://react-pdf-viewer.dev",
"keywords": [
"react",
"react.js",
"pdf",
"pdf.js",
"pdf viewer"
],
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"demo/*"
],
"scripts": {
"build:clearcache": "rm -rf node_modules/.cache/turbo",
"js": "turbo run js",
"css": "turbo run css",
"test:unit": "jest --no-cache --runInBand --config jest.config.ts",
"test:e2e": "jest --no-cache --runInBand --config jest-e2e.config.ts",
"lint": "eslint packages/**/src/*.ts packages/**/src/*.tsx",
"format": "prettier --write \"**/*.+(css|js|json|jsx|less|md|ts|tsx)\"",
"release": "turbo run release"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/postcss-import": "^14.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"canvas": "^2.11.2",
"cssnano": "^7.0.4",
"esbuild": "^0.23.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.34.3",
"hash-css-selector": "^1.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"path2d-polyfill": "^3.1.1",
"pdfjs-dist": "^4.4.168",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"prettier": "^3.3.2",
"puppeteer": "^22.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"turbo": "^2.0.4",
"typescript": "^5.5.2",
"web-streams-polyfill": "^4.0.0"
}
}