-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 4.28 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "covis",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"serve": "nx serve",
"serve:all": "nx run-many --target=serve --all --parallel",
"build": "nx build",
"build:all": "nx run-many --target=build --all --parallel",
"test:all": "nx run-many --target=test --all",
"test": "nx test",
"lint": "nx lint",
"lint:all": "nx run-many --target=lint --all",
"format": "nx format",
"e2e": "nx e2e covis-app-e2e",
"schema:sync": "yarn typeorm schema:sync -d apps/covis-service/src/data-source.ts",
"migration:run": "yarn typeorm migration:run -d apps/covis-service/src/data-source.ts",
"migration:revert": "yarn typeorm migration:revert -d apps/covis-service/src/data-source.ts",
"typeorm": "ts-node -T -P ./tsconfig.typeorm.json -r tsconfig-paths/register -r dotenv/config $(yarn bin typeorm)",
"docker:build": "yarn docker:build:base && yarn docker:build:app && yarn docker:build:service",
"docker:serve": "docker-compose -f docker-compose.prod.yml up",
"docker:seed": "yarn docker:schema:sync && yarn docker:db:seed",
"docker:build:base": "docker build -t covis-base:latest .",
"docker:build:app": "cd apps/covis-app && docker build -t covis-app:latest .",
"docker:build:service": "cd apps/covis-service && docker build -t covis-service:latest .",
"docker:schema:sync": "docker run --network host --env-file ./.env -t covis-base yarn schema:sync",
"docker:db:seed": "docker exec -it postgis bash -c 'psql -U $POSTGRES_USER -d $POSTGRES_DB -f /var/lib/postgresql/data/seed.sql'"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.3",
"@angular/cdk": "^14.0.3",
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/core": "^14.0.3",
"@angular/forms": "^14.0.3",
"@angular/material": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@angular/router": "^14.0.3",
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/platform-express": "^8.4.7",
"@nestjs/swagger": "^5.2.1",
"@nestjs/typeorm": "^8.1.4",
"@ngneat/elf": "^2.1.0",
"@ngneat/elf-devtools": "^1.2.1",
"@ngneat/elf-persist-state": "^1.1.2",
"@nrwl/angular": "14.3.6",
"@tweenjs/tween.js": "^18.6.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"csv": "^6.1.3",
"immer": "^9.0.15",
"json-stream-stringify": "^2.0.4",
"maplibre-gl": "^2.1.9",
"nestjs-redoc": "^2.2.2",
"pg": "^8.7.3",
"pg-copy-streams": "^6.0.2",
"pg-query-stream": "^4.2.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"three": "^0.141.0",
"threebox-plugin": "^2.2.7",
"tslib": "^2.4.0",
"typeorm": "^0.3.6",
"zone.js": "^0.11.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.3",
"@angular-eslint/eslint-plugin": "^14.0.0",
"@angular-eslint/eslint-plugin-template": "^14.0.0",
"@angular-eslint/template-parser": "^14.0.0",
"@angular/cli": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@angular/language-service": "^14.0.3",
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^8.4.7",
"@nrwl/cli": "14.3.6",
"@nrwl/cypress": "14.3.6",
"@nrwl/eslint-plugin-nx": "14.3.6",
"@nrwl/jest": "14.3.6",
"@nrwl/linter": "14.3.6",
"@nrwl/nest": "14.3.6",
"@nrwl/node": "14.3.6",
"@nrwl/web": "14.3.6",
"@nrwl/workspace": "14.3.6",
"@types/express": "^4.17.13",
"@types/geojson": "^7946.0.8",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.41",
"@types/pg": "^8.6.5",
"@types/pg-copy-streams": "^1.2.1",
"@types/three": "^0.141.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"cypress": "^9.7.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-preset-angular": "^12.1.0",
"nx": "14.3.6",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}