-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "flatland-benchmarks",
"version": "0.0.0",
"description": "Flatland Benchmarks",
"keywords": [
"flatland",
"benchmark"
],
"bugs": {
"url": "https://github.com/flatland-association/flatland-benchmarks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flatland-association/flatland-benchmarks.git"
},
"license": "MIT",
"author": "Flatland Association",
"directories": {
"doc": "docs"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.1",
"@angular/common": "^19.2.1",
"@angular/compiler": "^19.2.1",
"@angular/core": "^19.2.1",
"@angular/forms": "^19.2.1",
"@angular/platform-browser": "^19.2.1",
"@angular/platform-browser-dynamic": "^19.2.1",
"@angular/router": "^19.2.1",
"@flatland-association/flatland-ui": "^1.0.1",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"amqplib": "^0.10.5",
"angular-oauth2-oidc": "^19.0.0",
"ansi-styles": "^6.2.1",
"cors": "^2.8.5",
"express": "^5.0.0",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"log4js": "^6.9.1",
"postgres": "^3.4.5",
"redis": "^4.7.0",
"rxjs": "~7.8.2",
"testcontainers": "^10.18.0",
"tslib": "^2.8.1",
"wrap-ansi": "^9.0.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.1",
"@angular/cli": "^19.2.1",
"@angular/compiler-cli": "^19.2.1",
"@types/amqplib": "^0.10.7",
"@types/express": "^5.0.0",
"@types/jasmine": "~5.1.7",
"@types/jsonwebtoken": "^9.0.9",
"@types/supertest": "^6.0.2",
"angular-eslint": "19.2.0",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jasmine-core": "~5.6.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.4.3",
"ngx-spec": "^2.1.6",
"postcss": "^8.4.49",
"prettier": "3.5.3",
"prettier-eslint": "^16.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.10",
"prettier-plugin-tailwindcss": "^0.6.11",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.16",
"typescript": "~5.8.2",
"typescript-eslint": "8.26.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"scripts": {
"prepare": "husky",
"docker:up": "cd evaluation && docker compose up -d",
"docker:up:cvolumes": "cd evaluation && docker compose --env-file .env.cvolumes --env-file .env up -d",
"docker:down": "cd evaluation && docker compose down"
}
}