-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.92 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "ispent",
"description": "The web app for spending accounting",
"version": "1.6.3",
"license": "MIT",
"author": {
"name": "Vasyl Yefimenko",
"email": "[email protected]"
},
"scripts": {
"ng": "ng",
"postinstall": "node ./decorate-angular-cli.js",
"start": "ng serve",
"start:api": "ng serve api",
"start:api:prod": "node dist/apps/api/main",
"prisma:migrate:deploy": "prisma migrate deploy --schema=./libs/api/db/prisma/schema.prisma",
"start:migrate:prod": "npm run prisma:migrate:deploy && npm run start:api:prod",
"front:hmr": "ng serve front --hmr",
"build": "ng build",
"build:api": "ng build api",
"build:api:production": "ng run api:build:production",
"serve": "serve dist/apps/front",
"test": "ng test",
"many:serve": "ng run-many --target=serve --projects=front,api --parallel",
"many:test": "ng run-many --target=test --parallel",
"prisma:generate": "prisma generate --schema=./libs/api/db/prisma/schema.prisma",
"prisma:push": "prisma db push --schema=./libs/api/db/prisma/schema.prisma",
"generate:front-graphql": "graphql-codegen && npm run pretty:front-graphql",
"pretty:front-graphql": " prettier libs/front/data-access/src/lib/graphql/generated.ts --write",
"prestart:conver-ls:front": "rimraf apps/front/src/assets/i18n && make-dir ./apps/front/src/assets/i18n",
"start:conver-ls:front": "node ./apps/front/ls-converter.js",
"poststart:conver-ls:front": "prettier ./apps/front/src/assets/i18n/*.json --write ./apps/front/src/assets/i18n/*.json",
"docker:build:base": "docker build --platform=linux/amd64 -t ispent-base . && docker tag ispent-base rednez/ispent-base",
"docker:build:api": "docker build --platform=linux/amd64 -t ispent-api -f apps/api/Dockerfile . && docker tag ispent-api rednez/ispent-api"
},
"prisma": {
"seed": "ts-node libs/api/db/prisma/seed.ts"
},
"private": false,
"dependencies": {
"@angular/animations": "15.1.0",
"@angular/cdk": "15.1.0",
"@angular/common": "15.1.0",
"@angular/compiler": "15.1.0",
"@angular/core": "15.1.0",
"@angular/fire": "^7.5.0",
"@angular/forms": "15.1.0",
"@angular/material": "15.1.0",
"@angular/material-date-fns-adapter": "^15.1.0",
"@angular/platform-browser": "15.1.0",
"@angular/platform-browser-dynamic": "15.1.0",
"@angular/router": "15.1.0",
"@apollo/client": "^3.7.3",
"@nestjs/apollo": "^10.1.7",
"@nestjs/common": "^9.2.1",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.1",
"@nestjs/graphql": "^10.1.7",
"@nestjs/jwt": "^10.0.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.1",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"@nrwl/angular": "15.6.3",
"@prisma/client": "^4.8.1",
"apollo-angular": "^4.2.0",
"apollo-server-express": "^3.11.1",
"date-fns": "^2.29.3",
"firebase-admin": "^11.4.1",
"graphql": "^16.6.0",
"ng-mocks": "^14.5.2",
"ngx-color-picker": "^13.0.0",
"ngx-mask": "^15.0.2",
"passport": "^0.6.0",
"passport-firebase-jwt": "^1.2.1",
"passport-jwt": "^4.0.1",
"ramda": "^0.28.0",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.5.0",
"ts-morph": "^16.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.1.1",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "15.1.0",
"@angular/compiler-cli": "15.1.0",
"@angular/language-service": "15.1.0",
"@graphql-codegen/add": "^3.2.3",
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/typescript": "^2.8.7",
"@graphql-codegen/typescript-apollo-angular": "^3.5.6",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.2.1",
"@nrwl/cli": "15.6.3",
"@nrwl/cypress": "15.6.3",
"@nrwl/eslint-plugin-nx": "15.6.3",
"@nrwl/jest": "15.6.3",
"@nrwl/linter": "15.6.3",
"@nrwl/nest": "15.6.3",
"@nrwl/node": "15.6.3",
"@nrwl/workspace": "15.6.3",
"@types/jest": "28.1.1",
"@types/node": "16.11.7",
"@types/passport-jwt": "^3.0.8",
"@types/ramda": "^0.28.22",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.4.12",
"cypress": "^10.7.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.3",
"make-dir": "^3.1.0",
"make-dir-cli": "^3.0.0",
"nx": "15.6.3",
"postcss": "^8.4.18",
"prettier": "^2.8.3",
"prisma": "^4.8.1",
"rimraf": "^3.0.2",
"serve": "^14.1.2",
"tailwindcss": "^3.2.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.0"
}
}