-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.39 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
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
101
102
103
104
105
106
107
{
"name": "pos",
"version": "1.0.0",
"license": "Apache 2.0",
"author": {
"name": "eFaps.org",
"email": "information@eFaps.org"
},
"homepage": "www.eFaps.org",
"main": "main.js",
"scripts": {
"ng": "ng",
"start": "ng serve --verbose true --proxy-config proxy.conf.js --host 0.0.0.0",
"start-prod": "ng serve --configuration production --verbose true --proxy-config proxy.conf.js --host 0.0.0.0",
"start-elements": "ng serve --live-reload false --proxy-config proxy.conf.js --host 0.0.0.0",
"start-es": "ng serve --configuration es --proxy-config proxy.conf.js --host 0.0.0.0",
"build": "ng build --configuration production --localize",
"build2": "ng build --aot --source-map false",
"test": "ng test --browsers chromiumHeadless --no-progress --no-watch",
"test-jsdom": "ng test",
"lint": "ng lint",
"i18n": "ng extract-i18n --output-path src/locale",
"prettier-html": "prettier --print-width 100 --write \"src/**/*.html\" ",
"prettier-scss": "prettier --write \"src/**/*.scss\" ",
"prettier-ts": "prettier --write \"src/**/*.ts\"",
"prettier": "npm run prettier-html && npm run prettier-scss && npm run prettier-ts"
},
"private": true,
"dependencies": {
"@angular-extensions/elements": "^22.0.0",
"@angular/animations": "^22.1.7",
"@angular/cdk": "^22.1.7",
"@angular/common": "^22.1.7",
"@angular/compiler": "^22.1.7",
"@angular/core": "^22.1.7",
"@angular/forms": "^22.1.7",
"@angular/material": "^22.1.7",
"@angular/platform-browser": "^22.1.7",
"@angular/platform-browser-dynamic": "^22.1.7",
"@angular/router": "^22.1.7",
"@efaps/pos-library": "^13.0.2",
"@fontsource/roboto": "^5.3.0",
"@ngx-translate/core": "^18.0.0",
"@ngx-translate/http-loader": "^18.0.0",
"@stomp/rx-stomp": "^2.4.0",
"ajv-keywords": "^5.1.0",
"angular-svg-icon": "^19.1.1",
"angular2-hotkeys": "^16.0.1",
"decimal.js": "^10.6.0",
"enum-values": "^1.2.1",
"just-clone": "^6.2.0",
"jwt-decode": "^4.0.0",
"material-symbols": "^0.47.4",
"ng-event-source": "^1.0.14",
"ngx-localstorage": "^6.0.0",
"parse-decimal-number": "^1.0.0",
"rxjs": "^7.8.2",
"rxjs-compat": "^6.6.7",
"simple-keyboard": "^3.8.190",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^22.1.8",
"@angular/cli": "^22.1.8",
"@angular/compiler-cli": "^22.1.7",
"@angular/localize": "^22.1.7",
"@types/core-js": "^2.5.8",
"@types/mousetrap": "^1.6.15",
"@types/node": "^26.6.2",
"@types/sockjs-client": "^1.5.4",
"@vitest/browser-playwright": "^4.0.18",
"import-sort-style-module": "^6.0.0",
"jsdom": "^29.1.1",
"ng-mocks": "^14.18.1",
"prettier": "^3.9.8",
"prettier-plugin-sort-imports": "^1.8.11",
"replace-in-file": "^9.0.0",
"sass": "^1.104.1",
"ts-node": "^10.9.2",
"typescript": "~6.0.3",
"vitest": "^4.0.18"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "eslint"
},
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"prettier": {
"plugins": [
"prettier-plugin-sort-imports"
],
"sortingMethod": "alphabetical",
"stripNewlines": true,
"newlineBetweenTypes": true,
"importTypeOrder": [
"NPMPackages",
"localImportsValue",
"localImportsType"
],
"bracketSameLine": true
}
}