forked from hpi-sam/digital-fuesim-manv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.59 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
{
"name": "digital-fuesim-manv-frontend",
"version": "0.0.0",
"type": "module",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:update-snapshots": "cypress-image-diff -u",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"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.2.0",
"@angular/common": "~13.2.0",
"@angular/compiler": "~13.2.0",
"@angular/core": "~13.2.0",
"@angular/forms": "~13.2.0",
"@angular/platform-browser": "~13.2.0",
"@angular/platform-browser-dynamic": "~13.2.0",
"@angular/router": "~13.2.0",
"@ng-bootstrap/ng-bootstrap": "^12.0.0-beta.4",
"@ngrx/store": "^13.0.2",
"bootstrap": "^5.1.3",
"digital-fuesim-manv-shared": "file:../shared",
"lodash-es": "4.17.21",
"ol": "^6.12.0",
"rxjs": "~7.5.2",
"socket.io-client": "^4.4.1",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.1",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "~13.2.1",
"@angular/compiler-cli": "~13.2.0",
"@types/jest": "^27.4.0",
"@types/lodash-es": "^4.17.5",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"cypress": "^9.4.1",
"cypress-image-diff-js": "^1.16.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-rxjs-angular": "^2.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"jest": "^27.4.7",
"lodash": "^4.17.21",
"ts-jest": "^27.1.3",
"typescript": "~4.5.5"
}
}