forked from react-pdf-viewer/react-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.19 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
{
"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,
"workspaces": [
"packages/*"
],
"scripts": {
"build:clearcache": "rm -rf node_modules/.cache/turbo",
"clean": "turbo run clean",
"build": "turbo run build",
"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.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/expect-puppeteer": "^5.0.4",
"@types/jest": "^29.5.5",
"@types/jest-environment-puppeteer": "^5.0.4",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"canvas": "^2.11.2",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^9.0.1",
"path2d-polyfill": "^2.0.1",
"pdfjs-dist": "^4.0.379",
"prettier": "^3.0.3",
"puppeteer": "^21.3.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"sass": "^1.68.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"turbo": "^1.10.14",
"typescript": "^5.2.2",
"web-streams-polyfill": "^3.2.1"
}
}