forked from globex-recommendation/globex-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (80 loc) · 2.67 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
{
"name": "globex-web",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"prestart": "ng build --prod && ngc",
"start": "node dist/server/server.js",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"dev:ssr": "ng run globex-web:serve-ssr",
"serve:ssr": "node dist/globex-web/server/main.js",
"prerender": "ng run globex-web:prerender",
"lint": "ng lint",
"prod:docker": "ng build --configuration=production --output-hashing=none && ng run globex-web:server:production --output-hashing=none",
"dev:docker": "ng build --configuration=development --output-hashing=none && ng run globex-web:server:development --output-hashing=none"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.2.2",
"@angular/common": "~15.2.2",
"@angular/compiler": "~15.2.2",
"@angular/core": "~15.2.2",
"@angular/forms": "~15.2.2",
"@angular/localize": "^15.2.2",
"@angular/platform-browser": "~15.2.2",
"@angular/platform-browser-dynamic": "~15.2.2",
"@angular/platform-server": "~15.2.2",
"@angular/router": "~15.2.2",
"@fortawesome/angular-fontawesome": "^0.10.1",
"@ng-bootstrap/ng-bootstrap": "^14.0.1",
"@nguniversal/express-engine": "^15.2.0",
"@popperjs/core": "^2.11.4",
"angular-auth-oidc-client": "15.0.3",
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"bootstrap": "^5.1.3",
"ci": "^2.1.1",
"cookie-parser": "^1.4.6",
"env-var": "^7.1.1",
"express": "^4.15.2",
"font-awesome": "^4.7.0",
"ngx-cookie-service": "^15.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rxjs": "~7.5.0",
"rxjs-compat": "^6.6.7",
"uuid": "^9.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.2",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~15.2.2",
"@angular/compiler-cli": "~15.2.2",
"@nguniversal/builders": "^15.2.0",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^16.14.0",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~4.9.5",
"ejs": "^2.5.6"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}