This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.99 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
{
"name": "the-orange-alliance",
"version": "3.7.9",
"license": "MIT",
"scripts": {
"ng": "ng",
"build": "ng build --prod",
"start": "ng serve",
"test": "ng test --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"build:server:prod": "ng run the-orange-alliance:server && webpack --config webpack.server.config.js --progress --colors",
"build:browser:prod": "ng build --prod",
"build:prod": "npm run build:server:prod && npm run build:browser:prod",
"server": "node local.js",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"serve:ssr": "node dist/server",
"build:client-and-server-bundles": "ng build --prod && ng run the-orange-alliance:server:production",
"webpack:server": "webpack --config webpack.server.config.js --progress --colors",
"compile:server": "webpack --config webpack.server.config.js --progress --colors"
},
"private": true,
"dependencies": {
"@angular-mdc/web": "^3.2.1",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/fire": "^5.2.3",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/platform-server": "^8.2.14",
"@angular/router": "^8.2.14",
"@ng-toolkit/universal": "^7.1.2",
"@nguniversal/aspnetcore-engine": "^8.1.1",
"@nguniversal/common": "^8.1.1",
"@nguniversal/express-engine": "^8.1.1",
"@nguniversal/module-map-ngfactory-loader": "^8.1.1",
"@ngx-translate/core": "10.0.2",
"@ngx-translate/http-loader": "3.0.1",
"@types/jasmine": "^3.5.0",
"body-parser": "^1.19.0",
"bufferutil": "^4.0.1",
"chart.js": "^2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-datalabels": "^0.7.0",
"core-js": "^2.6.11",
"cors": "~2.8.4",
"express": "^4.17.1",
"express-rate-limit": "^2.11.0",
"firebase": "^7.24.0",
"jasmine": "^3.5.0",
"js-video-url-parser": "^0.2.8",
"memory-cache": "^0.2.0",
"ng2-charts": "^2.4.2",
"ngx-cookie-service": "^2.2.0",
"rxjs": "^6.5.3",
"serializer.ts": "0.0.12",
"tsun": "^0.5.0",
"typescript": "^3.4.1",
"utf-8-validate": "^5.0.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"winston": "^2.4.2",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.20",
"@angular/animations": "^8.2.14",
"@angular/cli": "^8.3.20",
"@angular/compiler-cli": "^8.2.14",
"@types/jest": "^24.0.23",
"@types/node": "^10.17.8",
"codelyzer": "^5.2.0",
"jasmine-core": "~3.1.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "^6.0.0",
"ts-loader": "^4.5.0",
"ts-node": "^2.1.2",
"tslint": "~5.10.0"
}
}