-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
86 lines (86 loc) · 3.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pdf-showcase",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prebuild": "node extract-versions.js && rm -rf .angular",
"build": "ng build --configuration production",
"start": "ng s --configuration production --open",
"postbuild": "rm -r -f dist/pdf-showcase/browser/assets/pdfs/under-copyright && rm -f dist/pdf-showcase/browser/stats.json",
"release": "npm run build && cp ftp/.htaccess dist/pdf-showcase/browser && cd ftp && npx tsx upload.ts",
"test": "ng test",
"lint": "ng lint",
"full": "cd ../ngx-extended-pdf-viewer && npm run build:base && npm run build:lib && cd ../extended-pdf-viewer-showcase && npm run prebuild && ng s --host 0.0.0.0",
"ts": "cd ../ngx-extended-pdf-viewer && npm run build:lib && cd ../extended-pdf-viewer-showcase && npm run prebuild && ng s --host 0.0.0.0",
"build:stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/pdf-showcase/browser/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.2.0",
"@angular/material": "^19.2.1",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/platform-server": "^19.2.0",
"@angular/router": "^19.2.0",
"@angular/ssr": "^19.2.0",
"@fontsource/material-icons": "^5.2.5",
"@fontsource/roboto": "^5.2.5",
"@material-design-icons/font": "^0.14.15",
"angular2-smart-table": "^3.6.1",
"marked": "^15.0.7",
"ngx-extended-pdf-viewer": "^23.0.0-alpha.0",
"ngx-markdown": "^19.1.0",
"ngx-perfect-scrollbar": "^10.1.1",
"perfect-scrollbar": "^1.5.6",
"prismjs": "^1.29.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"web-animations-js": "^2.3.2",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.0",
"@angular/cli": "^19.2.0",
"@angular/compiler-cli": "^19.2.0",
"@angular/language-service": "^19.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"angular-eslint": "^19.2.0",
"basic-ftp": "^5.0.5",
"brotli": "^1.3.3",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"express": "^4.21.2",
"helmet": "^8.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.5.3",
"node-dir": "^0.1.17",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.26.0",
"webpack-bundle-analyzer": "^4.10.2"
},
"overrides": {
"angular2-smart-table": {
"@angular/forms": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/common": "^19.0.0"
},
"jest-preset-angular": {
"@angular/core": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular-devkit/build-angular": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0"
}
}
}