-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.18 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.18 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
{
"name": "ngx-interactive-paycard-workspace",
"version": "3.0.1",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"ng": "ng",
"clean": "rimraf dist",
"build:demo": "ng build ngx-interactive-paycard-demo",
"build:lib": "ng build ngx-interactive-paycard-lib",
"build:lib:prod": "ng build ngx-interactive-paycard-lib --configuration production",
"build:all": "npm run build:lib && npm run build:demo -- --configuration production",
"start:demo": "wait-on dist/ngx-interactive-paycard-lib/package.json && ng serve ngx-interactive-paycard-demo --poll 2000",
"watch:lib": "ng build ngx-interactive-paycard-lib --watch",
"watch:all": "npm run clean && run-p watch:lib start:demo",
"test:lib": "ng test ngx-interactive-paycard-lib",
"test:lib:watch": "ng test ngx-interactive-paycard-lib --watch=true",
"test:lib:cc": "ng test ngx-interactive-paycard-lib --coverage",
"test:lib:ci": "ng test ngx-interactive-paycard-lib",
"test:e2e": "playwright test",
"lint:lib": "ng lint ngx-interactive-paycard-lib",
"lint:lib:fix": "ng lint ngx-interactive-paycard-lib --fix",
"lint:demo": "ng lint ngx-interactive-paycard-demo"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.6.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.0",
"@angular-eslint/builder": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.58.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.0",
"angular-eslint": "^21.0.0",
"eslint": "^9.0.0",
"happy-dom": "^20.8.4",
"ng-packagr": "^21.0.0",
"npm-run-all2": "^8.0.0",
"rimraf": "^6.0.0",
"ts-node": "~10.9.0",
"typescript": "~5.9.0",
"typescript-eslint": "^8.0.0",
"wait-on": "^9.0.0"
}
}