This repository has been archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.92 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
{
"name": "course-fe-next",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"prod:install": "cross-env NODE_ENV=production npm ci",
"prod:build": "cross-env NODE_ENV=production nx build --prod",
"prod:affected:build": "cross-env NODE_ENV=production nx affected:build --prod",
"compodoc": "nx run tools-stub:compodoc",
"compodoc:watch-serve": "nx run tools-stub:compodoc --watch --serve",
"all:lint": "nx run-many --target=lint --all --parallel --maxParallel=8",
"affected:lint": "nx affected:lint --parallel --maxParallel=8",
"affected:lint-and-fix": "nx affected:lint --parallel --maxParallel=8 --fix",
"start": "cross-env TAILWIND_MODE=watch nx serve --hmr --ssl --proxy-config proxy.dev.json --host 0.0.0.0",
"test": "nx test",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"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",
"wg": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "node ./scripts/ng-tailwindcss-jit.js && ngcc --properties es2015 browser module main"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "npm run affected:lint-and-fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@angular-builders/custom-webpack": "11.1.1",
"@angular/animations": "^11.2.0",
"@angular/common": "^11.2.0",
"@angular/compiler": "^11.2.0",
"@angular/core": "^11.2.0",
"@angular/forms": "^11.2.0",
"@angular/platform-browser": "^11.2.0",
"@angular/platform-browser-dynamic": "^11.2.0",
"@angular/router": "^11.2.0",
"@ngneat/until-destroy": "^8.0.3",
"@rx-angular/state": "^1.4.3",
"@rx-angular/template": "^1.0.0-beta.24",
"backoff-rxjs": "^6.5.7",
"html-minifier": "^4.0.0",
"json2typescript": "^1.4.1",
"primeicons": "^4.1.0",
"primeng": "^11.3.2",
"rxjs": "^6.6.3",
"tslib": "^2.0.0",
"typescript": "4.1.4",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.0",
"@angular-devkit/core": "^11.2.8",
"@angular-devkit/schematics": "^11.2.8",
"@angular-eslint/eslint-plugin": "~1.0.0",
"@angular-eslint/eslint-plugin-template": "~1.0.0",
"@angular-eslint/template-parser": "~1.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/language-service": "^11.0.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@compodoc/compodoc": "^1.1.11",
"@nrwl/angular": "12.0.1",
"@nrwl/cli": "12.0.1",
"@nrwl/devkit": "^12.0.1",
"@nrwl/eslint-plugin-nx": "12.0.1",
"@nrwl/jest": "12.0.1",
"@nrwl/linter": "12.0.1",
"@nrwl/tao": "12.0.1",
"@nrwl/workspace": "12.0.1",
"@tailwindcss/jit": "^0.1.18",
"@twittwer/compodoc": "^1.5.1",
"@types/jest": "26.0.8",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"autoprefixer": "^10.2.5",
"codelyzer": "^6.0.0",
"cross-env": "^7.0.3",
"dotenv": "8.2.0",
"eslint": "7.10.0",
"eslint-config-airbnb-base-typescript-prettier": "^4.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "26.2.2",
"jest-preset-angular": "8.3.1",
"postcss": "^8.2.9",
"prettier": "2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"tailwindcss": "2.1.1",
"ts-jest": "26.4.0",
"ts-node": "~9.1.1"
}
}