-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 4.15 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
{
"name": "research-fi",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"e2e": "ng e2e",
"i18n": "ng extract-i18n",
"start-fi": "ng serve --configuration=fi",
"start-sv": "ng serve --configuration=sv",
"start-en": "ng serve --configuration=en",
"build:prod": "ng build --configuration=production --localize",
"no_postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"test:prod": "ng test --browsers=ChromeHeadless --watch=false --code-coverage",
"tsc": "tsc --pretty",
"lint": "ng lint",
"dev:ssr": "ng run research-fi:serve-ssr",
"serve:ssr": "node dist/research-fi/server/main.js",
"OLD_build:ssr": "ng build && ng run research-fi:server",
"prerender": "ng run research-fi:prerender",
"DIVIDE": "echo '----------------------------------------'",
"ng2": "ng",
"start2": "dotenvx run -- ng serve",
"build:ssr": "ng build && node copy-proxy-server.js",
"build3": "ng build --source-map && node copy-proxy-server.js",
"watch2": "ng build --watch --configuration development",
"test2": "ng test",
"serve2": "node dist/research-fi/proxy-server.mjs",
"build-and-serve": "npm run build:ssr && dotenvx run -- npm run serve2",
"analyze-webpack": "ng build --configuration=production --localize --stats-json && webpack-bundle-analyzer dist/research-fi/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.11",
"@angular/cdk": "^17.3.10",
"@angular/common": "^17.3.11",
"@angular/compiler": "^17.3.11",
"@angular/core": "^17.3.11",
"@angular/forms": "^17.3.11",
"@angular/localize": "^17.3.11",
"@angular/material": "^17.3.10",
"@angular/platform-browser": "^17.3.11",
"@angular/platform-browser-dynamic": "^17.3.11",
"@angular/platform-server": "^17.3.11",
"@angular/router": "^17.3.11",
"@angular/ssr": "^17.3.8",
"@dotenvx/dotenvx": "^1.6.4",
"@fortawesome/angular-fontawesome": "^0.10.1",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"angular-auth-oidc-client": "^14.1.5",
"bootstrap": "^5.3.3",
"d3-scale-chromatic": "^2.0.0",
"d3-zoom": "^2.0.0",
"d3v4": "^4.2.2",
"express": "^4.18.2",
"font-awesome": "^4.7.0",
"lodash-es": "^4.17.21",
"ngx-bootstrap": "^12.0.0",
"ngx-countup": "^13.0.0",
"ngx-pipes": "^3.2.2",
"nodemailer": "^6.9.14",
"popper.js": "^1.16.0",
"rxjs": "^7.5.5",
"sanitize-html": "^2.13.0",
"seedrandom": "^3.0.5",
"tslib": "^2.1.0",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.8",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/cli": "^17.3.8",
"@angular/compiler-cli": "^17.3.11",
"@angular/language-service": "^17.3.11",
"@fortawesome/fontawesome-free": "^6.0.0",
"@playwright/test": "^1.39.0",
"@types/d3": "^7.1.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~3.6.6",
"@types/jasminewd2": "^2.0.8",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.18.0",
"@types/nodemailer": "^6.4.15",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"browser-sync": "^3.0.0",
"eslint": "^8.57.0",
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"ng-extract-i18n-merge": "^2.11.2",
"protractor": "~7.0.0",
"typescript": "^5.4.5",
"webpack-bundle-analyzer": "^4.10.2"
},
"optionalDependencies": {
"esbuild-android-arm64": "^0.15.13"
}
}