-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.63 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
{
"name": "pos-library",
"version": "13.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"test": "ng test --browsers chromium --no-progress --no-watch",
"lint": "ng lint",
"e2e": "ng e2e",
"prettier": "prettier --write \"projects/**/*.ts\""
},
"private": true,
"dependencies": {
"@angular/common": "^22.1.5",
"@angular/compiler": "^22.1.5",
"@angular/core": "^22.1.5",
"@angular/forms": "^22.1.5",
"@angular/platform-browser": "^22.1.5",
"@angular/router": "^22.1.5",
"@stomp/rx-stomp": "^2.4.0",
"decimal.js": "^10.6.0",
"just-clone": "^6.2.0",
"jwt-decode": "^4.0.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^22.1.7",
"@angular/cli": "^22.1.7",
"@angular/compiler-cli": "^22.1.5",
"@angular/language-service": "^22.1.5",
"@types/node": "^25.6.0",
"@types/jasmine": "^6.0.0",
"@vitest/browser-playwright": "^4.0.18",
"import-sort-style-module": "^6.0.0",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "^7.0.2",
"jsdom": "^30.0.1",
"ng-packagr": "^22.1.1",
"prettier": "^3.9.6",
"prettier-plugin-organize-imports": "^4.3.0",
"protractor": "~7.0.0",
"ts-node": "^10.9.2",
"typescript": "~6.0.3",
"vitest": "^4.1.11"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "eslint"
},
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
}
}