-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
118 lines (118 loc) · 4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "eshop",
"version": "0.9.1",
"description": "Ecommerce template",
"author": "Miroslav Smrtic",
"private": false,
"license": "MIT",
"scripts": {
"build:server": "NODE_ENV=production nest build --config ./server/nest-cli.json",
"start:server": "NODE_ENV=production nest start config ./server/nest-cli.json --path ./server/tsconfig.json",
"start:dev": "NODE_ENV=development nest start --watch config ./server/nest-cli.json --path ./server/tsconfig.json",
"start:debug": "nest start --debug --watch",
"start:prod": "node server/dist/main",
"format": "prettier --write \"server/**/*.ts\"",
"lint": "eslint \"{server,apps}/**/*.ts\" --fix",
"ng": "ng ",
"start:client": "ng serve --port 3000",
"build:client": "ng build",
"watch": "ng build --watch --configuration development",
"dev:ssr": "ng run eshop:serve-ssr",
"serve:ssr": "node dist/eshop/server/server.mjs",
"build:ssr": "NODE_ENV=production ng build --configuration production",
"serve:client:prod": "ng serve --configuration production",
"lint:client": "ng lint",
"lint:scss": "stylelint **/**.scss --formatter verbose",
"lint:scss:fix": "npm run lint:scss -- --fix",
"release": "standard-version",
"start": "npm run serve:ssr"
},
"dependencies": {
"@angular/animations": "^19.0.4",
"@angular/cdk": "19.0.4",
"@angular/common": "^19.0.4",
"@angular/compiler": "^19.0.4",
"@angular/core": "^19.0.4",
"@angular/forms": "^19.0.4",
"@angular/material": "19.0.4",
"@angular/platform-browser": "^19.0.4",
"@angular/platform-browser-dynamic": "^19.0.4",
"@angular/platform-server": "^19.0.4",
"@angular/router": "^19.0.4",
"@angular/service-worker": "^19.0.4",
"@angular/ssr": "^19.0.4",
"@nestjs/axios": "3.1.2",
"@nestjs/common": "^10.4.11",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.11",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mongoose": "10.1.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.11",
"@sendgrid/mail": "^8.1.4",
"@tinymce/tinymce-angular": "^8.0.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cloudinary": "^2.2.0",
"cookie-parser": "^1.4.7",
"deepmerge": "4.3.1",
"express": "^4.21.1",
"express-session": "^1.18.1",
"mongoose": "8.4.1",
"ngx-cookie-service": "^19.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"rxjs": "^7.8.1",
"streamifier": "^0.1.1",
"stripe": "^9.15.0",
"tinycolor2": "^1.6.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/core": "19.0.4",
"@angular-devkit/schematics": "19.0.4",
"@angular-eslint/builder": "^19.0.2",
"@angular-eslint/eslint-plugin": "^19.0.2",
"@angular-eslint/eslint-plugin-template": "^19.0.2",
"@angular-eslint/schematics": "^19.0.2",
"@angular-eslint/template-parser": "^19.0.2",
"@angular/build": "^19.0.4",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.4",
"@angular/language-service": "^19.0.4",
"@nestjs/cli": "^10.4.8",
"@nestjs/schematics": "^10.2.3",
"@nestjs/serve-static": "^4.0.2",
"@types/express": "^4.17.20",
"@types/express-session": "^1.18.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"compression": "^1.7.5",
"connect-mongo": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"fastify-static": "^4.7.0",
"prettier": "^3.3.3",
"saslprep": "1.0.3",
"sass": "^1.81.0",
"standard-version": "^9.5.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.3.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"whatwg-url": "^14.0.0"
},
"engines": {
"node": "22.0.0",
"npm": "10.9.1"
},
"browserslist": [
"> 5%"
]
}