-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.8 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
{
"name": "kuoki",
"version": "0.0.0",
"license": "MIT",
"description": "Libraries to help with JavasScript frontend development",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"scripts": {
"audit:deploy": "yarn audit --groups dependencies",
"audit:fix": "yarn-audit-fix",
"format:all": "nx format:write --all",
"build:all": "nx run-many --all --target=build",
"lint:all": "nx run-many --all --target=lint",
"test:all": "nx run-many --all --target=test",
"docs:all": "nx run-many --all --target=docs",
"check:all": "yarn lint:all %% yarn format:all && yarn test:all && yarn audit:fix && yarn build:all && yarn docs:all && yarn audit",
"nx": "nx",
"prepare": "husky install",
"update:nx": "nx migrate latest && yarn && (test -f migrations.json && (nx migrate --run-migrations && rm migrations.json) || 2>/dev/null)",
"postinstall": "ngcc --properties es2020 browser module main"
},
"private": true,
"dependencies": {
"@angular/animations": "15.2.6",
"@angular/common": "15.2.6",
"@angular/compiler": "15.2.6",
"@angular/core": "15.2.6",
"@angular/forms": "15.2.6",
"@angular/platform-browser": "15.2.6",
"@angular/platform-browser-dynamic": "15.2.6",
"@angular/router": "15.2.6",
"lodash-es": "^4.17.21",
"rxjs": "7.8.0",
"tslib": "^2.0.0",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.2.5",
"@angular-devkit/core": "~15.0.0",
"@angular-devkit/schematics": "~15.0.0",
"@angular-eslint/eslint-plugin": "15.0.0",
"@angular-eslint/eslint-plugin-template": "15.0.0",
"@angular-eslint/template-parser": "15.0.0",
"@angular/cli": "~15.2.0",
"@angular/compiler-cli": "15.2.6",
"@angular/language-service": "15.2.6",
"@babel/core": "~7.21.4",
"@commitlint/cli": "~17.5.1",
"@commitlint/config-conventional": "~17.4.4",
"@commitlint/cz-commitlint": "~17.5.0",
"@jscutlery/semver": "~2.30.1",
"@ngneat/spectator": "~14.0.0",
"@nrwl/angular": "15.9.2",
"@nrwl/cli": "15.9.2",
"@nrwl/devkit": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/nx-cloud": "15.3.5",
"@nrwl/rollup": "15.9.2",
"@nrwl/web": "15.9.2",
"@nrwl/workspace": "15.9.2",
"@schematics/angular": "~15.0.0",
"@sinonjs/fake-timers": "~10.0.2",
"@types/jest": "29.4.4",
"@types/lodash-es": "~4.17.7",
"@types/node": "18.7.1",
"@types/sinonjs__fake-timers": "~8.1.2",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"babel-preset-minify": "~0.5.2",
"commitizen": "~4.3.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unused-imports": "~2.0.0",
"husky": "~8.0.3",
"inquirer": "~8.2.5",
"jest": "29.4.3",
"jest-create-mock-instance": "~2.0.0",
"jest-environment-jsdom": "29.4.3",
"jest-extended": "~3.2.4",
"jest-fetch-mock": "~3.0.3",
"jest-html-reporters": "~3.1.4",
"jest-preset-angular": "13.0.0",
"lint-staged": "~13.2.1",
"lodash": "~4.17.21",
"ng-packagr": "15.2.2",
"nx": "15.9.2",
"postcss": "^8.4.5",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"rxjs-marbles": "~7.0.1",
"ts-essentials": "~9.1.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typedoc": "~0.24.2",
"typedoc-plugin-markdown": "~3.15.1",
"typedoc-plugin-missing-exports": "~2.0.0",
"typescript": "4.9.5",
"yarn-audit-fix": "~9.3.10"
},
"resolutions": {
"minimist": ">=1.2.6"
}
}