-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.55 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
{
"name": "ngx-sherlock-dev",
"version": "3.2.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": "^15.2.10",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@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.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.11",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.2.11",
"@angular/compiler-cli": "^15.2.10",
"@angular/language-service": "^15.2.10",
"@cypress/schematic": "2.4.0",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cypress": "^13.7.1",
"eslint": "^8.28.0",
"jasmine-core": "^3.7.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.1.0",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^15.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.6.4"
}
}