-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.23 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.23 KB
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
{
"name": "rsclone",
"version": "0.0.0",
"type": "module",
"scripts": {
"ng": "ng",
"start": "npm run tsc && node ./dist/out-tsc/server.js",
"client": "ng serve",
"devbuild": "npm-run-all -p client start",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"tsc": "tsc",
"monserver": "tsc && nodemon ./dist/out-tsc/server.js",
"postinstall": "ng build --prod"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.0.5",
"@angular/cdk": "^11.1.2",
"@angular/cli": "^11.0.7",
"@angular/common": "~11.0.5",
"@angular/compiler": "~11.0.5",
"@angular/compiler-cli": "~11.0.5",
"@angular/core": "~11.0.5",
"@angular/forms": "~11.0.5",
"@angular/material": "^11.0.3",
"@angular/platform-browser": "~11.0.5",
"@angular/platform-browser-dynamic": "~11.0.5",
"@angular/router": "~11.0.5",
"@biesbjerg/ngx-translate-extract": "^7.0.3",
"@fortawesome/angular-fontawesome": "^0.8.2",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"flag-icon-css": "^3.5.0",
"i18n-iso-countries": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"libphonenumber-js": "^1.9.8",
"mongoose": "~5.10.11",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"ng-click-outside": "^7.0.1",
"ngx-mat-intl-tel-input": "^4.0.0",
"ngx-sharebuttons": "^8.0.5",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"typescript": "~4.0.2",
"winston": "^3.3.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.5",
"@angular-eslint/builder": "1.0.0-beta.2",
"@angular-eslint/eslint-plugin": "1.0.0-beta.2",
"@angular-eslint/eslint-plugin-template": "1.0.0-beta.2",
"@angular-eslint/schematics": "1.0.0-beta.2",
"@angular-eslint/template-parser": "1.0.0-beta.2",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jasmine": "~3.6.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.2",
"@types/node": "^12.19.13",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^6.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-prettier": "^3.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0"
}
}