-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.6 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
{
"name": "listet_frontend",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration development",
"start:no-host": "ng serve --host 0.0.0.0 --port 4210",
"start:ssl": "ng serve --host 127.0.0.1 --public-host listet.local --ssl true --ssl-cert ./ssl/server.crt --ssl-key ./ssl/server.key",
"build": "ng build",
"build:dev": "PROD='false' ng build --configuration development",
"build:prod": "PROD='true' ng build --configuration production",
"test": "ng test",
"test:watch": "ng test --watch",
"lint": "ng lint",
"e2e": "ng e2e",
"snyk:protect": "snyk-protect",
"snyk:test": "snyk test",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.2",
"@angular/common": "^18.2.2",
"@angular/compiler": "^18.2.2",
"@angular/core": "^18.2.2",
"@angular/forms": "^18.2.2",
"@angular/platform-browser": "^18.2.2",
"@angular/platform-browser-dynamic": "^18.2.2",
"@angular/platform-server": "^18.2.2",
"@angular/router": "^18.2.2",
"@angular/ssr": "^18.2.2",
"@snyk/protect": "^1.1293.0",
"angular-feather": "^6.5.1",
"bufferutil": "^4.0.8",
"core-js": "^3.38.1",
"express": "^4.19.2",
"helmet": "^7.1.0",
"rxjs": "~7.5.0",
"socket.io-client": "^4.7.5",
"tslib": "^2.6.3",
"utf-8-validate": "^5.0.9",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/custom-esbuild": "^18.0.0",
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "^18.2.2",
"@angular-eslint/builder": "^18.3.0",
"@angular-eslint/eslint-plugin": "^18.3.0",
"@angular-eslint/eslint-plugin-template": "^18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.2",
"@angular/language-service": "^18.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/express": "^4.17.11",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"browser-sync": "^3.0.2",
"cypress": "latest",
"dotenv": "^16.4.5",
"esbuild-plugin-define": "^0.5.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.2",
"socket.io": "^4.7.5",
"ts-node": "~8.3.0",
"typescript": "~5.5.4"
},
"packageManager": "yarn@4.4.1"
}