forked from diprokon/ng-table-virtual-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.5.0",
"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": "^13.3.8",
"@angular/cdk": "^13.3.7",
"@angular/common": "^13.3.8",
"@angular/compiler": "^13.3.8",
"@angular/core": "^13.3.8",
"@angular/forms": "^13.3.8",
"@angular/material": "^13.3.7",
"@angular/platform-browser": "^13.3.8",
"@angular/platform-browser-dynamic": "^13.3.8",
"@angular/router": "^13.3.8",
"@stackblitz/sdk": "^1.6.0",
"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": "^13.1.0",
"@angular-builders/jest": "^13.0.4",
"@angular-devkit/build-angular": "^13.3.5",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "^13.3.5",
"@angular/compiler-cli": "^13.3.8",
"@angular/language-service": "^13.3.8",
"@types/jest": "^27.5.1",
"@types/node": "^14.18.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"cypress": "^12.3.0",
"eslint": "^8.17.0",
"jest": "^27.5.1",
"jest-preset-angular": "^11.1.2",
"ng-packagr": "^13.3.1",
"ts-node": "~10.7.0",
"typescript": "~4.6.*"
}
}