forked from react-pdf-viewer/react-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.29 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
{
"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": {
"bootstrap": "lerna bootstrap --hoist",
"postinstall": "npm run bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"dev": "lerna run dev",
"test:unit": "jest --runInBand --config jest.config.js",
"test:e2e": "jest --runInBand --config jest-e2e.config.js",
"lint": "eslint packages/**/src/*.ts packages/**/src/*.tsx",
"format": "prettier --write \"**/*.+(css|js|json|jsx|less|md|ts|tsx)\"",
"release": "npm run build && lerna publish from-package"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/expect-puppeteer": "^4.4.7",
"@types/jest": "^27.0.3",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/puppeteer": "^5.4.4",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"canvas": "^2.8.0",
"cssnano": "^5.0.13",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.5",
"jest-puppeteer": "^6.0.3",
"lerna": "^4.0.0",
"pdfjs-dist": "^2.11.338",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"puppeteer": "^13.0.0",
"react": "^16.8.0 || ^17.0.2",
"react-dom": "^16.8.0 || ^17.0.2",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.45.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}