forked from hpi-sam/digital-fuesim-manv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.73 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
{
"name": "digital-fuesim-manv-frontend",
"version": "0.0.0",
"type": "module",
"scripts": {
"cy:open": "cypress open",
"cy:install": "cypress install",
"cy:run": "cypress run",
"cy:update-snapshots": "cypress-image-diff -u",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:deployment": "ng build --configuration deployment",
"watch": "ng build --watch --configuration development",
"lint": "eslint --max-warnings 0 --ignore-path .gitignore \"./**/*.{ts,js,yml,css,sccs,html,angular}\"",
"lint:fix": "eslint --ignore-path .gitignore --fix \"./**/*.{ts,js,yml,css,sccs,html,angular}\"",
"test:ci": "jest --runInBand --coverage --verbose --ci",
"test": "jest --runInBand --coverage --verbose",
"test:watch": "jest --runInBand --verbose --watch"
},
"private": true,
"engines": {
"node": ">=16",
"npm": ">=7"
},
"dependencies": {
"@angular/animations": "~13.3.2",
"@angular/common": "~13.3.2",
"@angular/compiler": "~13.3.2",
"@angular/core": "~13.3.2",
"@angular/forms": "~13.3.2",
"@angular/platform-browser": "~13.3.2",
"@angular/platform-browser-dynamic": "~13.3.2",
"@angular/router": "~13.3.2",
"@ng-bootstrap/ng-bootstrap": "^12.0.2",
"@ngrx/store": "^13.1.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"digital-fuesim-manv-shared": "file:../shared",
"lodash-es": "4.17.21",
"ol": "^6.14.1",
"rxjs": "~7.5.5",
"socket.io-client": "^4.4.1",
"tslib": "^2.3.1",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.2",
"@angular-eslint/builder": "13.2.0",
"@angular-eslint/eslint-plugin": "13.2.0",
"@angular-eslint/eslint-plugin-template": "13.2.0",
"@angular-eslint/schematics": "13.2.0",
"@angular-eslint/template-parser": "13.2.0",
"@angular/cli": "~13.3.2",
"@angular/compiler-cli": "~13.3.2",
"@types/jest": "^27.4.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"cypress": "^9.5.3",
"cypress-image-diff-js": "^1.18.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-rxjs-angular": "^2.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"ts-jest": "^27.1.4",
"typescript": "~4.6.3"
}
}