-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.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
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
{
"name": "leaderboard-app",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"nx": "nx",
"start": "concurrently \"npm run start:api\" \"ng serve -o \" ",
"start:api": "concurrently \"nx run leaderboard-api:generate-swagger \" \"ng serve leaderboard-api\"",
"dev:api": "concurrently \"nx run leaderboard-api:swagger-dev\" \"ng serve leaderboard-api\"",
"swagger": "nx run leaderboard-api:generate-swagger",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.0.0",
"@angular/cdk": "^11.1.2",
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/forms": "^11.0.0",
"@angular/material": "^11.1.2",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@angular/router": "^11.0.0",
"@fortawesome/angular-fontawesome": "^0.8.2",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@ng-bootstrap/ng-bootstrap": "^9.0.2",
"@ngneat/hot-toast": "^1.0.3",
"@ngneat/overview": "^1.0.0-beta.7",
"@ngrx/effects": "^10.1.2",
"@ngrx/entity": "^10.1.2",
"@ngrx/store": "^10.1.2",
"@ngrx/store-devtools": "^10.1.2",
"@nrwl/angular": "11.2.10",
"bootstrap": "^4.6.0",
"cors": "^2.8.5",
"debug": "^2.6.9",
"express": "^4.17.1",
"ng-http-loader": "^9.1.0",
"rxjs": "~6.6.3",
"swagger-ui-express": "^4.1.6",
"tslib": "^2.0.0",
"tsoa": "^3.5.1",
"uuid": "^8.3.2",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.1",
"@angular-eslint/eslint-plugin": "~1.0.0",
"@angular-eslint/eslint-plugin-template": "~1.0.0",
"@angular-eslint/template-parser": "~1.0.0",
"@angular/cli": "~11.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/language-service": "^11.0.0",
"@nrwl/cli": "11.2.10",
"@nrwl/cypress": "11.2.10",
"@nrwl/eslint-plugin-nx": "11.2.10",
"@nrwl/express": "11.2.10",
"@nrwl/jest": "11.2.10",
"@nrwl/linter": "11.2.10",
"@nrwl/node": "11.2.10",
"@nrwl/tao": "11.2.10",
"@nrwl/workspace": "11.2.10",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/express": "4.17.0",
"@types/jest": "26.0.8",
"@types/node": "12.12.38",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"concurrently": "^5.3.0",
"cypress": "^6.0.1",
"dotenv": "6.2.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^5.0.8",
"jest": "^26.2.2",
"jest-cli": "^26.6.3",
"jest-preset-angular": "8.3.2",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"ts-jest": "26.4.0",
"ts-node": "^9.1.1",
"typescript": "~4.0.3"
}
}