-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.32 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
{
"name": "pspdfkit-web-example-react",
"version": "2020.3.0",
"description": "Standalone and offline PDF viewer web application built with PSPDFKit for Web and React",
"keywords": [
"wasm",
"web",
"assembly",
"pdf",
"pdf",
"viewer",
"react",
"asm.js",
"offline",
"indexeddb"
],
"author": "PSPDFKit (https://pspdfkit.com)",
"homepage": "https://pspdfkit.com/web",
"license": "SEE LICENSE IN https://pspdfkit.com/legal/License.pdf",
"readme": "https://pspdfkit.com/guides/web",
"dependencies": {
"pspdfkit": "2020.4.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "2.1.8"
},
"scripts": {
"verify-installation": "node scripts/verify-install.js && node scripts/copy-pspdfkit-files.js",
"prestart": "npm run verify-installation",
"start": "cross-env REACT_APP_PSPDFKIT_LICENSE_KEY='YOUR_LICENSE_KEY_GOES_HERE' react-scripts start",
"prebuild": "npm run verify-installation",
"build": "cross-env REACT_APP_PSPDFKIT_LICENSE_KEY='YOUR_LICENSE_KEY_GOES_HERE' react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"cross-env": "^5.2.0",
"ncp": "^2.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}