-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.28 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.28 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
{
"name": "lfx-one-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:development": "ng build --configuration development",
"build:production": "ng build --configuration production",
"build:staging": "ng build --configuration staging",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start:server": "pm2-runtime ecosystem.config.js",
"setup:logrotate": "pm2 install pm2-logrotate && pm2 set pm2-logrotate:compress true",
"logs:server": "pm2 logs --raw",
"lint": "eslint \"src/**/*.{ts,html}\" --fix",
"lint:check": "eslint \"src/**/*.{ts,html}\"",
"format": "prettier --write \"src/**/*.{ts,html,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,css,json}\"",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.14",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.14",
"@angular/compiler": "^19.2.14",
"@angular/core": "^19.2.14",
"@angular/forms": "^19.2.14",
"@angular/platform-browser": "^19.2.14",
"@angular/platform-browser-dynamic": "^19.2.14",
"@angular/platform-server": "^19.2.14",
"@angular/router": "^19.2.14",
"@angular/ssr": "^19.2.15",
"@fullcalendar/angular": "^6.1.19",
"@fullcalendar/core": "^6.1.19",
"@fullcalendar/daygrid": "^6.1.19",
"@fullcalendar/timegrid": "^6.1.19",
"@lfx-one/shared": "workspace:*",
"@linuxfoundation/lfx-ui-core": "^0.0.20",
"@openfeature/core": "^1.9.1",
"@openfeature/launchdarkly-client-provider": "^0.3.3",
"@openfeature/web-sdk": "^1.7.1",
"@primeng/themes": "^19.1.4",
"compression": "^1.8.1",
"dotenv": "^17.2.1",
"express": "^4.18.2",
"express-openid-connect": "^2.19.2",
"launchdarkly-js-client-sdk": "^3.9.0",
"nats": "^2.29.3",
"ngx-cookie-service-ssr": "^19.1.2",
"pino-http": "^10.5.0",
"primeng": "^19.1.4",
"rxjs": "~7.8.2",
"snowflake-sdk": "^2.3.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.15",
"@angular-eslint/eslint-plugin": "^19.8.1",
"@angular-eslint/eslint-plugin-template": "^19.8.1",
"@angular-eslint/template-parser": "^19.8.1",
"@angular/cli": "^19.2.15",
"@angular/compiler-cli": "^19.2.14",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@playwright/test": "^1.54.2",
"@types/compression": "^1",
"@types/express": "^4.17.17",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@typescript-eslint/type-utils": "^8.39.1",
"@typescript-eslint/types": "^8.39.1",
"@typescript-eslint/utils": "^8.39.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"pino-pretty": "^13.1.1",
"playwright": "^1.54.2",
"pm2": "^6.0.8",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.17",
"tailwindcss-primeui": "^0.6.1",
"typescript": "~5.7.2"
}
}