This repository was archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.63 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
{
"name": "bluetooth-eshop",
"version": "0.9.5",
"main": "./dist/server/main.js",
"license": "MIT",
"engines": {
"node": "13.5.0",
"npm": "6.13.7"
},
"scripts": {
"start": "node dist/server/main.js",
"ssr": "npm run build && npm run start",
"lint": "ng lint",
"heroku-postbuild": "npm run build:client-and-server-bundles && npm run start",
"build:client-and-server-bundles": "ng build --prod --output-hashing none && ng run eshop:server",
"dev:ssr": "ng run eshop:serve-ssr",
"serve:ssr": "node dist/server/main.js",
"build": "ng build --prod && ng run eshop:server",
"prerender": "ng run eshop:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.1.0",
"@angular/cli": "^9.1.0",
"@angular/common": "^9.1.0",
"@angular/compiler": "^9.1.0",
"@angular/compiler-cli": "^9.1.0",
"@angular/core": "^9.1.0",
"@angular/forms": "^9.1.0",
"@angular/language-service": "^9.1.0",
"@angular/platform-browser": "^9.1.0",
"@angular/platform-browser-dynamic": "^9.1.0",
"@angular/platform-server": "^9.1.0",
"@angular/router": "^9.1.0",
"@angular/service-worker": "^9.1.0",
"@ngrx/effects": "^9.0.0",
"@ngrx/router-store": "^9.0.0",
"@ngrx/store": "^9.0.0",
"@ngrx/store-devtools": "^9.0.0",
"@nguniversal/common": "^9.1.0",
"@nguniversal/express-engine": "^9.1.0",
"@tinymce/tinymce-angular": "^3.5.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.21.0",
"connect-mongo": "^2.0.3",
"cookie-session": "^2.0.0-beta.3",
"core-js": "^3.6.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"materialize-css": "^1.0.0",
"mongoose": "5.5.11",
"multer": "^1.4.2",
"ng2-file-upload": "^1.4.0",
"ngx-cookie-service": "^3.0.4",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"redis": "^2.8.0",
"reselect": "^4.0.0",
"rxjs": "^6.5.5",
"sendgrid": "^5.2.3",
"stripe": "^6.22.0",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.0",
"@nguniversal/builders": "^9.1.0",
"@types/express": "^4.17.0",
"@types/node": "^12.11.1",
"codelyzer": "^5.2.1",
"compression": "^1.7.4",
"node-sass": "^4.13.0",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.12.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "3.7.5",
"webpack-cli": "^3.3.11"
}
}