-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "nutrient-pwa-example",
"version": "1.0.0",
"description": "A Nutrient Web SDK Progressive Web Application example",
"keywords": [
"pwa",
"progressive web app",
"progressive web application",
"pdf",
"offline",
"indexeddb",
"service workers"
],
"author": "Nutrient (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/web",
"license": "SEE LICENSE IN https://www.nutrient.io/legal/Nutrient_SDK_User_Evaluation_Subscription_Agreement",
"readme": "https://www.nutrient.io/guides/web",
"scripts": {
"verify-installation": "node scripts/verify-install.js",
"prestart": "npm run build",
"start": "serve ./dist",
"watch": "run-p start watch:build",
"watch:build": "chokidar 'src/**/*' --command 'npm run build'",
"build": "npm run verify-installation && node scripts/build.js && workbox injectManifest",
"start:e2e": "npm run build && serve ./dist"
},
"dependencies": {
"@nutrient-sdk/viewer": "1.12.0",
"idb": "^2.1.3",
"serve": "^14.2.4",
"workbox-sw": "^7.4.0"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"workbox-cli": "^7.4.0"
},
"overrides": {
"ajv": "^8.18.0",
"minimatch": "3.1.4",
"json5": "^2.2.2",
"latest-version": "^9.0.0",
"path-to-regexp": "^3.3.0",
"rollup": "^3.30.0",
"cross-spawn": "^7.0.6",
"tmp": "^0.2.4",
"on-headers": "^1.1.0",
"serve-handler": {
"minimatch": "3.1.4"
},
"serialize-javascript": "^7.0.4"
}
}