-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
94 lines (94 loc) · 3.51 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
{
"name": "ng-in-viewport",
"version": "16.1.0",
"private": true,
"license": "MIT",
"scripts": {
"all-contributors:add": "all-contributors add",
"all-contributors:generate": "all-contributors generate",
"build:demo": "ng build demo --configuration=production",
"build:example": "ng build example --configuration=production",
"build:lib": "ng build ng-in-viewport --configuration=production",
"e2e:open:demo": "npx cypress open --project=projects/demo-e2e --e2e",
"e2e:open:example": "npx cypress open --project=projects/example-e2e --e2e",
"e2e:run:demo": "npx cypress run --project=projects/demo-e2e --e2e",
"e2e:run:example": "npx cypress run --project=projects/example-e2e --e2e",
"format": "prettier --check --ignore-unknown .",
"format:write": "prettier --write --ignore-unknown .",
"lint": "eslint projects/ng-in-viewport projects/demo projects/example",
"lint:demo": "ng lint demo",
"lint:example": "ng lint example",
"lint:lib": "ng lint ng-in-viewport",
"prepare": "npx --no -- is-ci || npx --no -- husky || true",
"serve:demo": "ng serve demo",
"serve:example": "ng serve example",
"test": "jest --coverage",
"test:demo": "jest --projects=\"projects/demo\" --coverage",
"test:example": "jest --projects=\"projects/example\" --coverage",
"test:lib": "jest --projects=\"projects/ng-in-viewport\" --coverage",
"watch:demo": "ng build demo --watch --configuration=development",
"watch:example": "ng build example --watch --configuration=development",
"watch:lib": "ng build ng-in-viewport --watch --configuration=development"
},
"dependencies": {
"@angular/animations": "~17.3.7",
"@angular/cdk": "~17.3.7",
"@angular/common": "~17.3.7",
"@angular/compiler": "~17.3.7",
"@angular/core": "~17.3.7",
"@angular/forms": "~17.3.7",
"@angular/material": "~17.3.7",
"@angular/platform-browser": "~17.3.7",
"@angular/platform-browser-dynamic": "~17.3.7",
"@angular/router": "~17.3.7",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.6",
"@angular-eslint/builder": "~17.3.0",
"@angular-eslint/eslint-plugin": "~17.3.0",
"@angular-eslint/eslint-plugin-template": "~17.3.0",
"@angular-eslint/schematics": "~17.3.0",
"@angular-eslint/template-parser": "~17.3.0",
"@angular/cli": "~17.3.6",
"@angular/compiler-cli": "~17.3.7",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@ngneat/spectator": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"all-contributors-cli": "^6.26.1",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.0.3",
"lint-staged": "^15.2.2",
"ng-mocks": "^14.12.1",
"ng-packagr": "^17.3.0",
"prettier": "3.2.5",
"prettier-plugin-packagejson": "^2.4.11",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"engines": {
"node": "18.x || >=20.10.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "20.11.1",
"npm": "10.4.0"
}
}