-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
87
{
"name": "nugget-web",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"icons": "svg-to-ts-files svg-to-ts"
},
"private": true,
"svg-to-ts": {
"srcFiles": [
"./src/assets/icons/*.svg",
"./src/assets/icons/employee/*.svg",
"./src/assets/icons/animation/*.svg",
"./src/assets/icons/social/*.svg"
],
"outputDirectory": "./src/assets/svg-icon",
"interfaceName": "NuggetIcon",
"typeName": "ng",
"prefix": "ng",
"delimiter": "KEBAB",
"svgoConfig": {
"plugins": [
"cleanupAttrs"
]
},
"fileName": "ud-icon.model",
"compileSources": true
},
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"bootstrap": "^5.3.1",
"ckeditor4-angular": "^5.1.0",
"file-saver": "^2.0.5",
"jquery": "^3.7.1",
"jspdf": "^2.5.1",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"ngx-editor": "^15.3.0",
"ngx-extended-pdf-viewer": "^18.1.14",
"ngx-pagination": "^6.0.3",
"ngx-quill": "^13.0.0",
"ngx-toastr": "^17.0.2",
"ngx-webcam": "^0.4.1",
"papaparse": "^5.4.1",
"pdf-lib": "^1.17.1",
"rxjs": "~7.8.0",
"svg-to-ts": "^10.1.0",
"swiper": "^10.2.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.5",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^15.2.0",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "~4.3.0",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "^8.33.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.9.4"
}
}