-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.15 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": "pelaguru",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"nx": "nx",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nrwl/workspace",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"firebase": "firebase",
"firebase:get_config": "firebase functions:config:get -P default > .runtimeconfig.json",
"firebase:win_set_credentials": "set GOOGLE_APPLICATION_CREDENTIALS=./apps/back-end/keys/pelaguru-dev.json",
"firebase:serve:linux": "concurrently --kill-others \"npm run build back-end -- --watch\" \"export GOOGLE_APPLICATION_CREDENTIALS='apps/back-end/keys/pelaguru-dev.json' && firebase serve --only functions\"",
"firebase:serve:win": "concurrently --kill-others \"npm run build back-end -- --watch\" \" npm run firebase:win_set_credentials && firebase serve --only functions\"",
"firebase:shell": "concurrently --kill-others \"npm run build back-end -- --watch\" \"firebase functions:shell\" --raw",
"firebase:deploy": "firebase deploy",
"firebase:func_deploy": "firebase deploy --only functions",
"firebase:frontend_deploy": "ng build --prod front-end && firebase deploy --only hosting:front-end-dev",
"firebase:admin_deploy": "ng build --prod admin-dashboard && firebase deploy --only hosting:admin-dev"
},
"private": true,
"main": "dist/apps/back-end/main.js",
"engines": {
"node": "10"
},
"dependencies": {
"@angular/animations": "^10.0.0",
"@angular/cdk": "^10.2.3",
"@angular/common": "^10.0.0",
"@angular/compiler": "^10.0.0",
"@angular/core": "^10.0.0",
"@angular/fire": "^6.0.2",
"@angular/forms": "^10.0.0",
"@angular/material": "^10.2.3",
"@angular/platform-browser": "^10.0.0",
"@angular/platform-browser-dynamic": "^10.0.0",
"@angular/platform-server": "^10.0.0",
"@angular/router": "^10.0.0",
"@angular/service-worker": "^10.0.0",
"@nebular/eva-icons": "6.2.0",
"@nebular/theme": "^6.2.0",
"@nrwl/angular": "10.2.0",
"@sendgrid/mail": "^7.2.6",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"apexcharts": "^3.20.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"eva-icons": "^1.1.2",
"firebase": "^7.22.0",
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.11.0",
"ng-apexcharts": "^1.5.1",
"ngx-dropzone": "^2.2.2",
"ngx-spinner": "^10.0.1",
"nx": "^10.3.0",
"rxjs": "~6.5.5",
"sweetalert2": "^10.3.5",
"ts-md5": "^1.2.7",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": ">= 0.900 < 0.1100",
"@angular-devkit/build-angular": "~0.1000.0",
"@angular/cli": "~10.0.0",
"@angular/compiler-cli": "^10.0.0",
"@angular/language-service": "^10.0.0",
"@nrwl/cypress": "10.2.0",
"@nrwl/jest": "10.2.0",
"@nrwl/node": "10.2.0",
"@nrwl/workspace": "10.2.0",
"@schematics/angular": "~10.0.0",
"@types/firebase": "^3.2.1",
"@types/jest": "26.0.8",
"@types/morgan": "^1.9.1",
"@types/node": "~8.9.4",
"codelyzer": "~5.0.1",
"cypress": "^4.1.0",
"dotenv": "6.2.0",
"eslint": "6.8.0",
"firebase-tools": "^8.0.0",
"fuzzy": "^0.1.3",
"husky": "^4.3.0",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jest": "26.2.2",
"jest-preset-angular": "8.2.1",
"open": "^7.0.3",
"prettier": "2.0.4",
"ts-jest": "26.1.4",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"typescript": "~3.9.3"
}
}