-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.39 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
{
"name": "confs",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx run-many --target=serve --projects=server,conf --parallel",
"build": "nx build",
"test": "nx test",
"build:server": "npx nx build server --prod",
"build:cert": "npx nx build cert --prod",
"start:server": "node dist/apps/server/main.js",
"devpr": "CUSTOM_DOMAIN=devpr.org nx serve conf --host devpr.org --port 4200 --disable-host-check",
"postinstall": "ngcc --properties es2020 browser module main",
"dev:ssr": "nx run conf:serve-ssr:development",
"serve:ssr": "node dist/apps/conf/server/main.js",
"build:ssr": "nx build && nx run conf:server",
"prerender": "nx run conf:prerender",
"media-kit": "npx http-server ./assets/media-kit -o",
"build:digitalocean": "npm install --production=false && npm run build && npm ci --legacy-peer-deps"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.6",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~15.0.0",
"@angular/compiler-cli": "15.0.1",
"@angular/language-service": "15.0.1",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nguniversal/builders": "15.0.0",
"@nrwl/angular": "15.2.1",
"@nrwl/cli": "15.2.1",
"@nrwl/cypress": "15.2.1",
"@nrwl/eslint-plugin-nx": "15.2.1",
"@nrwl/jest": "15.2.1",
"@nrwl/js": "15.2.1",
"@nrwl/linter": "15.2.1",
"@nrwl/nest": "15.2.1",
"@nrwl/node": "15.2.1",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/web": "15.2.1",
"@nrwl/workspace": "15.2.1",
"@types/express": "^4.17.0",
"@types/hbs": "^4.0.1",
"@types/jest": "28.1.8",
"@types/marked": "^4.0.6",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.2",
"nx": "15.2.1",
"prettier": "^2.6.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"@angular/animations": "15.0.1",
"@angular/cdk": "^15.0.0",
"@angular/common": "15.0.1",
"@angular/compiler": "15.0.1",
"@angular/core": "15.0.1",
"@angular/forms": "15.0.1",
"@angular/material": "^15.1.5",
"@angular/platform-browser": "15.0.1",
"@angular/platform-browser-dynamic": "15.0.1",
"@angular/platform-server": "15.0.1",
"@angular/pwa": "^15.1.6",
"@angular/router": "15.0.1",
"@angular/service-worker": "15.0.1",
"@nestjs/axios": "^0.1.0",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/serve-static": "^3.0.0",
"@nguniversal/express-engine": "15.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"date-fns": "^2.29.3",
"express": "^4.15.2",
"hbs": "^4.2.0",
"marked": "^4.1.0",
"mongoose": "^6.5.2",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
}
}