-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
{
"name": "node-amazon",
"version": "0.0.1",
"license": "MIT",
"author": "Suman Bhattarai",
"scripts": {
"start": "ng run amazon:serve-ssr --port 3000",
"lint": "node_modules/.bin/eslint --ext .js,.ts ./ --fix",
"init:db": "node scripts/setupDatabase.js",
"serve": "node dist/server/main.js",
"build": "ng build --configuration production && ng run amazon:server:production",
"postinstall": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.4",
"@angular/common": "^15.1.4",
"@angular/compiler": "^15.1.4",
"@angular/core": "^15.1.4",
"@angular/forms": "^15.1.4",
"@angular/localize": "^15.1.4",
"@angular/platform-browser": "^15.1.4",
"@angular/platform-browser-dynamic": "^15.1.4",
"@angular/platform-server": "^15.1.4",
"@angular/router": "^15.1.4",
"@ng-bootstrap/ng-bootstrap": "^14.0.1",
"@nguniversal/common": "^15.1.0",
"@nguniversal/express-engine": "^15.1.0",
"@popperjs/core": "^2.11.6",
"angular2-notifications": "^12.0.0",
"bcrypt-nodejs": "0.0.3",
"bootstrap": "5.2.3",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"core-js": "^3.27.2",
"cors": "^2.8.5",
"express": "^4.20.0",
"express-jwt": "^8.4.1",
"express-session": "^1.17.3",
"express-sslify": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"ngx-pagination": "^6.0.3",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.9.0",
"route-cache": "^0.4.7",
"rxjs": "^6.6.7",
"ts-helpers": "^1.1.2",
"tslib": "^2.5.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.5",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "^15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "15.1.5",
"@angular/compiler-cli": "^15.1.4",
"@nguniversal/builders": "^15.1.0",
"@types/express": "4.17.17",
"@types/jasmine": "~4.3.1",
"@types/node": "^16.18.12",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "40.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^8.0.3",
"intl": "^1.2.5",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^13.1.1",
"node-sass": "^8.0.0",
"protractor": "~7.0.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"lint-staged": {
"*.{js,ts}": [
"node_modules/.bin/eslint --fix"
]
},
"packageManager": "yarn@3.4.1"
}