-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.42 KB
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
{
"name": "ngx-sherlock-dev",
"version": "3.4.0",
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && FORCE_COLOR=1 npm-run-all -l -p watch:*",
"start:app": "export NODE_OPTIONS=--openssl-legacy-provider && ng serve --open",
"watch:lib": "ng build @politie/ngx-sherlock --watch",
"watch:app": "sleep 10 && ng serve --open",
"clean": "rimraf coverage dist",
"build:dev": "ng build @politie/ngx-sherlock",
"build:prod": "ng build @politie/ngx-sherlock --configuration production",
"test": "ng test @politie/ngx-sherlock",
"test:ci": "ng test @politie/ngx-sherlock --no-watch --browsers=ChromeHeadless --code-coverage",
"lint": "ng lint",
"precommit": "npm-run-all clean lint test:ci build:prod precommit:e2e",
"precommit:e2e": "run-p start:app cypress:run",
"cypress:open": "cypress open --e2e --browser chrome",
"cypress:run": "cypress run --e2e --browser chrome"
},
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@angular/animations": "^19.2.17",
"@angular/common": "^19.2.17",
"@angular/compiler": "^19.2.17",
"@angular/core": "^19.2.17",
"@angular/forms": "^19.2.17",
"@angular/platform-browser": "^19.2.17",
"@angular/platform-browser-dynamic": "^19.2.17",
"@politie/sherlock": "^3.4.16",
"@politie/sherlock-proxy": "^3.4.16",
"@politie/sherlock-rxjs": "^3.4.16",
"rxjs": "^6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.19",
"@angular-eslint/builder": "19.8.1",
"@angular-eslint/eslint-plugin": "19.8.1",
"@angular-eslint/eslint-plugin-template": "19.8.1",
"@angular-eslint/schematics": "19.8.1",
"@angular-eslint/template-parser": "19.8.1",
"@angular/cli": "^19.2.19",
"@angular/compiler-cli": "^19.2.17",
"@angular/language-service": "^19.2.17",
"@types/jasmine": "^5.1.9",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cypress": "^15.3.0",
"eslint": "^8.57.0",
"jasmine-core": "^5.10.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}