-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.89 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
115
116
{
"name": "swa-auth",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"start:ng": "ng serve",
"start:swa": "nx serve-swa",
"start:api": "cd ./api && npm start",
"start": "npm-run-all --parallel start:api start:swa",
"build": "ng build",
"prebuild:api": "cd ./api && npm install",
"build:api": "cd ./api && npm run build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"storybook": "nx storybook",
"build-storybook": "nx build-storybook",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build --parallel",
"affected:e2e": "nx affected:e2e --parallel",
"affected:test": "nx affected:test --parallel",
"affected:lint": "nx affected:lint --parallel",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"run-many:build": "nx run-many --target=build --parallel",
"run-many:lint": "nx run-many --target=lint --parallel",
"run-many:test": "nx run-many --target=test --parallel",
"run-many:e2e": "nx run-many --target=e2e --parallel",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"stats": "nx stats",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@angular/animations": "12.2.5",
"@angular/common": "12.2.5",
"@angular/compiler": "12.2.5",
"@angular/core": "12.2.5",
"@angular/forms": "12.2.5",
"@angular/platform-browser": "12.2.5",
"@angular/platform-browser-dynamic": "12.2.5",
"@angular/router": "12.2.5",
"@ngrx/data": "^12.5.1",
"@ngrx/effects": "12.5.1",
"@ngrx/entity": "12.5.1",
"@ngrx/store": "12.5.1",
"@ngrx/store-devtools": "12.5.1",
"@nrwl/angular": "13.1.4",
"bulma": "^0.9.2",
"core-js": "^3.6.4",
"font-awesome": "^4.7.0",
"minimist": "^1.2.5",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.5",
"@angular-eslint/eslint-plugin": "~12.3.0",
"@angular-eslint/eslint-plugin-template": "~12.3.0",
"@angular-eslint/template-parser": "~12.3.0",
"@angular/cli": "12.2.5",
"@angular/compiler-cli": "12.2.5",
"@angular/language-service": "12.2.5",
"@azure/static-web-apps-cli": "^0.8.1",
"@compodoc/compodoc": "^1.1.15",
"@nrwl/cli": "13.1.4",
"@nrwl/cypress": "13.1.4",
"@nrwl/eslint-plugin-nx": "13.1.4",
"@nrwl/jest": "13.1.4",
"@nrwl/linter": "13.1.4",
"@nrwl/nx-cloud": "12.5.2",
"@nrwl/storybook": "13.1.4",
"@nrwl/tao": "13.1.4",
"@nrwl/workspace": "13.1.4",
"@storybook/addon-essentials": "~6.3.0",
"@storybook/angular": "~6.3.0",
"@storybook/builder-webpack5": "~6.3.0",
"@storybook/manager-webpack5": "~6.3.0",
"@testing-library/cypress": "^8.0.1",
"@twittwer/compodoc": "^1.6.4",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"azure-functions-core-tools": "^3.0.3785",
"cypress": "^8.7.0",
"dotenv": "~10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jest": "27.2.3",
"jest-preset-angular": "10.0.1",
"ng-packagr": "12.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "^2.3.1",
"source-map-explorer": "^2.5.2",
"start-server-and-test": "^1.14.0",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"typescript": "4.3.5"
}
}