This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.28 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
{
"name": "jdrks",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"start": "ng serve",
"start:demo-book-list": "ng serve demo-book-list",
"start:demo-form": "ng serve demo-form",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"e2e-local:demo-book-list": "ng e2e demo-book-list-e2e --watch",
"e2e-local:demo-form": "ng e2e demo-form-e2e --watch",
"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",
"release:build": "npm run clean && nx affected:test --all && nx affected:e2e --all && nx build ngx-deep-linking && npx copy README.md dist/libs/ngx-deep-linking",
"release:publish": "cd dist\\libs\\ngx-deep-linking && npm publish --access=public",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "13.2.5",
"@angular/cdk": "13.2.5",
"@angular/common": "13.2.5",
"@angular/compiler": "13.2.5",
"@angular/core": "13.2.5",
"@angular/forms": "13.2.5",
"@angular/material": "13.2.5",
"@angular/platform-browser": "13.2.5",
"@angular/platform-browser-dynamic": "13.2.5",
"@angular/router": "13.2.5",
"@nrwl/angular": "13.8.4",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.2.5",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.2.5",
"@angular/compiler-cli": "13.2.5",
"@angular/language-service": "13.2.5",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nrwl/cli": "13.8.4",
"@nrwl/cypress": "13.8.4",
"@nrwl/eslint-plugin-nx": "13.8.4",
"@nrwl/jest": "13.8.4",
"@nrwl/linter": "13.8.4",
"@nrwl/nx-cloud": "13.1.6",
"@nrwl/tao": "13.8.4",
"@nrwl/workspace": "13.8.4",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"cypress": "^7.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "10.0.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^7.0.4",
"jest": "27.2.3",
"jest-preset-angular": "11.1.1",
"ng-packagr": "13.2.1",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"typescript": "4.5.5"
}
}