-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.31 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
{
"name": "fullstack-nestjs-angular-boilerplate",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"serve": "node serve-script",
"compile:server": "webpack --config webpack.server.config.js --progress --colors",
"serve:ssr": "node dist/server",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"build:client-and-server-bundles": "ng build --prod && ng run fullstack-nestjs-angular-boilerplate:server:production"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.10",
"@angular/cdk": "^8.2.3",
"@angular/common": "~8.2.0",
"@angular/compiler": "~8.2.0",
"@angular/core": "~8.2.0",
"@angular/forms": "~8.2.0",
"@angular/http": "^7.2.15",
"@angular/material": "^8.2.0",
"@angular/platform-browser": "~8.2.0",
"@angular/platform-browser-dynamic": "~8.2.0",
"@angular/platform-server": "~8.2.0",
"@angular/router": "~8.2.0",
"@auth0/angular-jwt": "^3.0.0",
"@fortawesome/angular-fontawesome": "^0.5.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@nebular/auth": "^4.4.0",
"@nebular/eva-icons": "^4.4.0",
"@nebular/security": "^4.4.0",
"@nebular/theme": "^4.4.0",
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/jwt": "^6.1.1",
"@nestjs/mongoose": "^6.1.2",
"@nestjs/ng-universal": "^2.0.0",
"@nestjs/passport": "^6.2.0",
"@nestjs/platform-express": "^6.0.0",
"@nestjs/testing": "^6.5.3",
"@nguniversal/express-engine": "^8.0.0",
"@nguniversal/module-map-ngfactory-loader": "^8.0.0",
"angular-webstorage-service": "^1.0.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"class-validator": "^0.12.2",
"eva-icons": "^1.1.1",
"express-rate-limit": "^5.0.0",
"hammerjs": "^2.0.8",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"localstorage-polyfill": "^1.0.1",
"moment": "^2.24.0",
"mongoose": "^5.6.9",
"ngx-bootstrap": "^5.1.1",
"ngx-moment": "^3.5.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.5.2",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.3",
"@angular/cli": "~8.3.3",
"@angular/compiler-cli": "~8.0.1",
"@angular/language-service": "~8.2.0",
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^8.9.5",
"@types/passport-jwt": "^3.0.2",
"@types/passport-local": "^1.0.33",
"codelyzer": "^5.0.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"nodemon": "^1.18.11",
"protractor": "~5.4.0",
"rimraf": "^2.6.3",
"ts-loader": "^5.2.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.4.5",
"wait-on": "^3.2.0",
"webpack-cli": "^3.1.0"
}
}