-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.87 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
{
"name": "ecommerce",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build:image": "npm run build:prod && docker build -f tools/docker/Dockerfile -t ecommerce .",
"build:prod": "nx build api --prod && nx build ecommerce --prod",
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js",
"serve:api": "nx serve api",
"serve:app": "nx serve ecommerce",
"serve:database": "docker run -d --name postgis --shm-size=4g -e POSTGRES_PASSWORD=\"$DB_PASSWORD\" -v postgis:/var/lib/postgresql/data --net=network-ecommerce -p 5432:5432 postgis/postgis",
"serve:image": "docker run --rm -it --name ecommerce -e DB_HOST=postgis -e DB_PASSWORD=\"$DB_PASSWORD\" --net=network-ecommerce -p 80:3333 ecommerce"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.0.0",
"@angular/common": "~15.0.0",
"@angular/compiler": "~15.0.0",
"@angular/core": "~15.0.0",
"@angular/forms": "~15.0.0",
"@angular/platform-browser": "~15.0.0",
"@angular/platform-browser-dynamic": "~15.0.0",
"@angular/router": "~15.0.0",
"@nestjs/common": "~9.2.1",
"@nestjs/config": "~2.2.0",
"@nestjs/core": "~9.2.1",
"@nestjs/platform-express": "~9.2.1",
"@nestjs/serve-static": "~3.0.0",
"@nestjs/swagger": "~6.1.4",
"@nestjs/typeorm": "~9.0.1",
"@nhogs/nestjs-neo4j": "~0.5.10",
"@nrwl/angular": "15.4.5",
"chart.js": "~4.1.2",
"chartjs-chart-wordcloud": "~4.1.0",
"chartjs-plugin-autocolors": "0.2.1",
"neo4j-driver": "~4.4.10",
"neovis.js": "~2.0.2",
"nestjs-typeorm-paginate": "~4.0.3",
"ng-zorro-antd": "~15.0.2",
"pg": "~8.8.0",
"reflect-metadata": "~0.1.13",
"rxjs": "~7.5.7",
"tslib": "~2.4.1",
"typeorm": "~0.3.11",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.0.0",
"@angular-eslint/eslint-plugin": "~15.0.0",
"@angular-eslint/eslint-plugin-template": "~15.0.0",
"@angular-eslint/template-parser": "~15.0.0",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "~15.0.0",
"@angular/language-service": "~15.0.0",
"@nestjs/schematics": "~9.0.4",
"@nestjs/testing": "~9.2.1",
"@nrwl/cypress": "15.4.5",
"@nrwl/eslint-plugin-nx": "15.4.5",
"@nrwl/jest": "15.4.5",
"@nrwl/linter": "15.4.5",
"@nrwl/nest": "~15.4.5",
"@nrwl/node": "~15.4.5",
"@nrwl/workspace": "15.4.5",
"@types/jest": "28.1.1",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "~5.48.1",
"@typescript-eslint/parser": "~5.48.1",
"cypress": "~11.2.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "~2.12.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "~12.2.3",
"nx": "15.4.5",
"prettier": "^2.6.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
}
}