-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
84 lines (84 loc) · 2.88 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
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "npm run build-themes && ng serve",
"build": "npm run build-themes && ng build",
"build-prod": "npm run build-themes && ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"build-themes:dev": "python ./tools/build-themes.py",
"build-themes": "bash ./tools/build-themes.sh",
"e2e:docker": "TESTING_ENV=docker npx playwright test",
"e2e:dev": "TESTING_ENV=dev npx playwright test",
"e2e:stg": "TESTING_ENV=dev npx playwright test",
"e2e:live": "TESTING_ENV=live npx playwright test",
"dev:ssr": "npm run build-themes && ng run frontend:serve-ssr",
"serve:ssr": "node dist/frontend/server/main.js",
"build:ssr": "ng build && ng run frontend:server",
"build-prod:ssr": "ng build --configuration production && ng run frontend:server:production",
"prerender": "ng run frontend:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.9",
"@angular/cdk": "^13.3.7",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.3.9",
"@angular/material": "^13.3.7",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@angular/platform-server": "^13.3.9",
"@angular/router": "^13.3.9",
"@auth0/angular-jwt": "^5.0.2",
"@datadog/browser-rum": "^5.34.0",
"@nguniversal/express-engine": "^13.1.1",
"@sentry/browser": "^6.18.1",
"compression": "^1.7.4",
"core-js": "^3.8.3",
"domino": "^2.1.6",
"express": "^4.15.2",
"lodash": "^4.17.21",
"monaco-editor": "^0.24.0",
"ng-click-outside2": "^10.0.4",
"ngx-markdown": "^13.1.0",
"ngx-mat-select-search": "^4.0.2",
"ngx-monaco-editor": "^12.0.0",
"numeral": "^2.0.6",
"query-string": "^7.1.0",
"rxjs": "^6.6.7",
"tslib": "^2.3.0",
"yaml": "2.0.0-6",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.6",
"@angular/cli": "^13.3.6",
"@angular/compiler-cli": "^13.3.9",
"@angular/language-service": "^13.3.9",
"@nguniversal/builders": "^13.1.1",
"@playwright/test": "^1.48.2",
"@types/express": "^4.17.11",
"@types/express-serve-static-core": "^4.17.21",
"@types/jasmine": "~3.7.7",
"@types/jasminewd2": "^2.0.9",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.4",
"codelyzer": "^6.0.2",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"protractor": "~7.0.0",
"ts-node": "~10.0.0",
"tslint": "~6.1.0",
"typescript": "~4.5.5"
}
}