-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
160 lines (160 loc) · 5.8 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "seed",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "docker compose up -d",
"stop": "docker compose down",
"create-envs": "node tools/scripts/create-envs.mjs",
"docker:init": "yarn create-envs && yarn docker:base && yarn docker:firebase && yarn start",
"docker:base": "docker volume rm seed_node-modules -f && docker image rm seed_base -f && docker build -t seed_base -f docker/base.dockerfile .",
"docker:firebase": "docker image rm seed_firebase -f && docker build -t seed_firebase -f docker/firebase.dockerfile .",
"docker:postinstall": "yarn stop && yarn docker:base && yarn start",
"-----Nx": "-",
"serve": "nx serve",
"serve:mobile": "nx serve --host=0.0.0.0",
"serve:back-api": "yarn prisma migrate deploy && yarn prisma generate && yarn prisma studio & yarn serve back-api",
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"e2e": "nx e2e",
"deploy": "nx deploy",
"deploy:all": "nx run-many --target=deploy",
"deploy:affected": "nx affected --target=deploy",
"update": "nx migrate latest",
"format": "nx format:write",
"format:check": "nx format:check",
"dep-graph": "nx dep-graph",
"-----Hooks": "-",
"pre-commit:fix": "yarn lint-staged && yarn ci:test --parallel=1 && yarn ci:build --parallel=1",
"pre-commit:check": "yarn format:check && yarn ci:lint --parallel=1 && yarn ci:test --parallel=1 && yarn ci:build --parallel=1",
"-----CI-CD": "-",
"ci": "yarn ci:install-deps && yarn ci:format && yarn ci:lint && yarn ci:test && yarn ci:e2e && yarn ci:build && yarn ci:deploy",
"ci:install-deps": "yarn install --frozen-lockfile --non-interactive && rm -f node_modules/@angular/compiler-cli/ngcc/__ngcc_lock_file__",
"ci:format": "yarn nx format:check --base=origin/master",
"ci:lint": "yarn nx affected:lint --base=origin/master",
"ci:test": "yarn nx affected:test --base=origin/master",
"ci:e2e": "yarn nx affected:e2e --base=origin/master",
"ci:build": "yarn nx affected:build --prod --base=origin/master",
"ci:deploy": "yarn deploy:affected --base=origin/master~1 --head=origin/master"
},
"private": true,
"dependencies": {
"@angular/animations": "15.0.1",
"@angular/common": "15.0.1",
"@angular/compiler": "15.0.1",
"@angular/core": "15.0.1",
"@angular/fire": "^7.4.1",
"@angular/forms": "15.0.1",
"@angular/platform-browser": "15.0.1",
"@angular/platform-browser-dynamic": "15.0.1",
"@angular/router": "15.0.1",
"@google-cloud/tasks": "^3.0.5",
"@nestjs/axios": "^1.0.0",
"@nestjs/common": "9.1.6",
"@nestjs/core": "9.1.6",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/platform-express": "9.1.6",
"@nestjs/swagger": "6.1.3",
"@ngneat/until-destroy": "^9.2.2",
"@ngrx-traits/common": "^14.2.0-beta.1",
"@ngrx-traits/core": "^14.2.0-beta.1",
"@ngrx/effects": "^15.0.0",
"@ngrx/entity": "^15.0.0",
"@ngrx/router-store": "^15.0.0",
"@ngrx/store": "^15.0.0",
"@ngrx/store-devtools": "^15.0.0",
"@nrwl/angular": "15.2.3",
"@prisma/client": "^4.7.0",
"@sentry/browser": "^7.22.0",
"body-parser": "^1.20.1",
"cache-manager": "^5.1.3",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"date-fns": "^2.29.3",
"firebase": "^9.8.4",
"firebase-admin": "^11.3.0",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0",
"ngrx-child-selectors": "^12.0.0",
"ngrx-handlers": "^12.0.1",
"prisma": "^4.7.0",
"prisma-error-enum": "^0.1.3",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.5.0",
"sharp": "^0.31.2",
"swagger-ui-express": "^4.6.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.0.1",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "15.0.1",
"@angular/language-service": "15.0.1",
"@angular/pwa": "^15.0.1",
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.2.0",
"@nrwl/cli": "15.2.3",
"@nrwl/cypress": "15.2.3",
"@nrwl/eslint-plugin-nx": "15.2.3",
"@nrwl/jest": "15.2.3",
"@nrwl/linter": "15.2.3",
"@nrwl/nest": "15.2.3",
"@nrwl/node": "15.2.3",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/workspace": "15.2.3",
"@tailwindcss/forms": "^0.5.3",
"@types/cache-manager": "^4.0.2",
"@types/chalk": "^2.2.0",
"@types/compression": "^1.7.2",
"@types/faker": "^5.5.9",
"@types/jest": "28.1.8",
"@types/lodash-es": "^4.17.6",
"@types/morgan": "^1.9.3",
"@types/node": "18.11.9",
"@types/sharp": "^0.31.0",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"autoprefixer": "^10.4.0",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"faker": "^5.5.3",
"firebase-tools": "^11.16.1",
"husky": "^4.3.8",
"jasmine-marbles": "^0.9.2",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.2",
"lint-staged": "^13.1.0",
"nx": "15.2.3",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit:fix"
}
},
"lint-staged": {
"*.{ts,js,css,scss,html,json,yaml}": "yarn prettier --write",
"*.{ts,js}": "yarn ci:lint --parallel=1 --fix=true",
"schema.prisma": "yarn prisma format"
}
}