-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
82 lines (82 loc) · 2.6 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
{
"name": "ng-table-virtual-scroll",
"version": "1.6.1",
"description": "Virtual scroll for for Angular Material Table",
"homepage": "https://github.com/diprokon/ng-table-virtual-scroll",
"author": {
"name": "Dmytro Prokhorov",
"url": "https://github.com/diprokon"
},
"repository": {
"type": "git",
"url": "git://github.com/diprokon/ng-table-virtual-scroll.git"
},
"bugs": {
"url": "https://github.com/diprokon/ng-table-virtual-scroll/issues"
},
"keywords": [
"angular",
"material",
"scroll",
"virtual scroll",
"table"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve demo-page",
"build": "ng build ng-table-virtual-scroll --configuration production",
"postbuild": "cp README.md dist/ng-table-virtual-scroll/README.md",
"build:demo": "ng build demo-page --configuration production",
"postbuild:demo": "cp dist/demo/index.html dist/demo/404.html",
"test": "ng test",
"lint": "ng lint ng-table-virtual-scroll",
"lint:demo": "ng lint demo-page",
"e2e": "cypress open --component -b chrome",
"e2e:ci": "cypress run --component --config-file cypress.config.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.4",
"@angular/cdk": "^15.1.4",
"@angular/common": "^15.1.4",
"@angular/compiler": "^15.1.4",
"@angular/core": "^15.1.4",
"@angular/forms": "^15.1.4",
"@angular/material": "^15.1.4",
"@angular/platform-browser": "^15.1.4",
"@angular/platform-browser-dynamic": "^15.1.4",
"@angular/router": "^15.1.4",
"@stackblitz/sdk": "^1.8.2",
"highlight.js": "^11.5.1",
"ngx-highlightjs": "^6.1.2",
"raw-loader": "^4.0.2",
"rxjs": "^7.5.5",
"tslib": "^2.4.0",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^15.0.0",
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^15.1.5",
"@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.1.5",
"@angular/compiler-cli": "^15.1.4",
"@angular/language-service": "^15.1.4",
"@types/jest": "^29.4.0",
"@types/node": "^14.18.1",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"cypress": "^12.5.1",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jest-preset-angular": "^12.2.6",
"ng-packagr": "^15.1.2",
"ts-node": "~10.9.1",
"typescript": "~4.8.*"
}
}