-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.34 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "civpro",
"version": "1.1.0",
"author": {
"name": "Fábio Lucena Ribas",
"email": "[email protected]"
},
"description": "CIVPRO - Geração de formulario em PDF.",
"homepage": "https://github.com/FabioLucenaRibas/civpro",
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "ng serve",
"start:host": "ng serve --host=192.168.1.20 --disable-host-check",
"start:electron": "npm run build:electron && electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=never",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"build:ci": "ng build --base-href /civpro/",
"build:prod": "npm run build:electron -- -c production",
"build:electron": "npm run electron:serve-tsc && ng build --base-href ./",
"build": "ng build",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"e2e": "npm run build:prod && playwright test -c e2e/playwright.config.ts e2e/"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@capacitor/android": "4.2.0",
"@capacitor/app": "4.0.1",
"@capacitor/core": "4.2.0",
"@capacitor/filesystem": "^4.1.0",
"@capacitor/haptics": "4.0.1",
"@capacitor/ios": "4.2.0",
"@capacitor/keyboard": "4.0.1",
"@capacitor/status-bar": "4.0.1",
"@ionic/angular": "^6.2.6",
"file-saver": "^2.0.5",
"html-to-pdfmake": "^2.4.22",
"jspdf": "^2.5.1",
"jszip": "^3.10.1",
"ngx-extended-pdf-viewer": "^17.4.6",
"ngx-mask": "^14.0.3",
"pdfmake": "^0.2.5",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primeng": "^16.0.2",
"rxjs": "^7.8.1",
"tslib": "^2.4.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular-eslint/builder": "~16.1.0",
"@angular-eslint/eslint-plugin": "~16.1.0",
"@angular-eslint/eslint-plugin-template": "~16.1.0",
"@angular-eslint/template-parser": "~16.1.0",
"@angular/cdk": "^16.2.0",
"@angular/cli": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@angular/language-service": "^16.2.0",
"@capacitor/cli": "4.2.0",
"@ionic/angular-toolkit": "^7.0.0",
"@playwright/test": "^1.35.1",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "~4.3.4",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"electron": "^25.2.0",
"electron-builder": "^24.4.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~4.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"playwright": "^1.35.1",
"ts-node": "~10.9.1",
"typescript": "~5.1.6"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}