forked from PSPDFKit/pspdfkit-web-example-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 696 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "example-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.15"
},
"scripts": {
"do-prepare": "node scripts/verify-install.js && node scripts/copy-pspdfkit-files.js",
"prestart": "npm run do-prepare",
"start": "cross-env REACT_APP_PSPDFKIT_KEY='YOUR_LICENSE_KEY_GOES_HERE' react-scripts start",
"prebuild": "npm run do-prepare",
"build": "cross-env REACT_APP_PSPDFKIT_KEY='YOUR_LICENSE_KEY_GOES_HERE' react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"cross-env": "^5.1.1"
}
}