-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 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
86
87
{
"name": "node-amazon",
"version": "0.0.1",
"license": "MIT",
"author": "Suman Bhattarai",
"scripts": {
"start": "npx ng build && concurrently \"node dist/server/server.mjs\" \"ng serve --port 4200\"",
"lint": "node_modules/.bin/eslint --ext .js,.ts ./ --fix",
"init:db": "tsx scripts/setupDatabase.ts",
"serve": "node dist/server/server.mjs",
"build": "ng build --configuration production",
"typecheck": "tsc --noEmit",
"postinstall": "husky install",
"e2e": "ng build && ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^22.0.2",
"@angular/common": "^22.0.2",
"@angular/compiler": "^22.0.2",
"@angular/core": "^22.0.2",
"@angular/forms": "^22.0.2",
"@angular/localize": "^22.0.2",
"@angular/platform-browser": "^22.0.2",
"@angular/platform-browser-dynamic": "^22.0.2",
"@angular/platform-server": "^22.0.2",
"@angular/router": "^22.0.2",
"@angular/ssr": "^22.0.3",
"@ng-bootstrap/ng-bootstrap": "^20.0.0",
"@popperjs/core": "^2.11.8",
"angular2-notifications": "^16.0.1",
"bcryptjs": "^3.0.3",
"bootstrap": "5.3.8",
"chalk": "^5.6.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"express": "^4.22.0",
"express-jwt": "^8.4.1",
"express-session": "^1.19.0",
"jsonwebtoken": "^9.0.0",
"kysely": "^0.29.2",
"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.22.0",
"rxjs": "^7.8.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^22.0.3",
"@angular/build": "^22.0.3",
"@angular/cli": "22.0.3",
"@angular/compiler-cli": "^22.0.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "1.61.0",
"@types/bcryptjs": "^3.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.17",
"@types/express-session": "^1.19.0",
"@types/node": "^24",
"@types/passport": "^1.0.17",
"@types/passport-facebook": "^3.0.4",
"@types/passport-google-oauth20": "^2.0.17",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.20.0",
"angular-eslint": "^22.0.0",
"concurrently": "^10.0.3",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"playwright-ng-schematics": "^22.0.0",
"sass": "^1.101.0",
"tsx": "^4.22.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.61.1"
},
"lint-staged": {
"*.{js,ts}": [
"node_modules/.bin/eslint --fix"
]
},
"packageManager": "yarn@4.17.0"
}