-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
141 lines (141 loc) · 4.86 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "angular-slickgrid",
"version": "8.10.1",
"description": "Slickgrid components made available in Angular",
"keywords": [
"angular",
"plugin",
"datagrid",
"datatable",
"slickgrid"
],
"license": "MIT",
"author": "Ghislain B.",
"homepage": "https://ghiscoding.github.io/Angular-Slickgrid/",
"bugs": {
"url": "https://github.com/ghiscoding/Angular-Slickgrid/issues"
},
"scripts": {
"start": "ng serve --port 4300",
"prebuild": "npm-run-all delete:dist lint",
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
"postbuild": "npm-run-all copy:i18n",
"copy:i18n": "copyfiles -f src/assets/i18n/*.json dist/i18n",
"delete:dist": "rimraf dist",
"cypress:open": "cypress open --config-file test/cypress.config.ts",
"cypress:ci": "cypress run --config-file test/cypress.config.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"jest:ci": "jest --runInBand --coverage=true --ci --config ./test/jest.config.ts",
"jest:clear": "jest --clearCache",
"jest:watch": "jest --config test/jest.config.ts --watch",
"jest:coverage": "jest --config test/jest.config.ts --runInBand --coverage",
"build:demo": "ng build --configuration=production --base-href=\"\"",
"pack-lib": "npm pack ./dist",
"preview:release": "release-it --only-version --dry-run",
"release": "release-it --only-version",
"serve:demo": "servor ./website index.html 4300"
},
"repository": {
"type": "git",
"url": "https://github.com/ghiscoding/angular-slickgrid.git"
},
"main": "src/app/modules/angular-slickgrid/index",
"private": false,
"comments": {
"new-release": "npm run release, note that yarn is not supported with release-it and will throw an error"
},
"funding": {
"type": "ko_fi",
"url": "https://ko-fi.com/ghiscoding"
},
"dependencies": {
"@ngx-translate/core": "^15.0.0",
"@slickgrid-universal/common": "~5.10.1",
"@slickgrid-universal/custom-footer-component": "~5.10.1",
"@slickgrid-universal/empty-warning-component": "~5.10.1",
"@slickgrid-universal/event-pub-sub": "~5.9.0",
"@slickgrid-universal/pagination-component": "~5.10.1",
"@slickgrid-universal/row-detail-view-plugin": "~5.10.1",
"@slickgrid-universal/rxjs-observable": "~5.10.1",
"dequal": "^2.0.3",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@angular-devkit/build-angular": "^18.2.11",
"@angular-eslint/builder": "^18.4.0",
"@angular-eslint/eslint-plugin": "^18.4.0",
"@angular-eslint/eslint-plugin-template": "^18.4.0",
"@angular-eslint/schematics": "^18.4.0",
"@angular-eslint/template-parser": "^18.4.0",
"@angular/animations": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/common": "^18.2.11",
"@angular/compiler": "^18.2.11",
"@angular/compiler-cli": "^18.2.11",
"@angular/core": "^18.2.11",
"@angular/forms": "^18.2.11",
"@angular/language-service": "^18.2.11",
"@angular/platform-browser": "^18.2.11",
"@angular/platform-browser-dynamic": "^18.2.11",
"@angular/router": "^18.2.11",
"@faker-js/faker": "^9.2.0",
"@fnando/sparkline": "^0.3.10",
"@formkit/tempo": "^0.1.2",
"@ng-select/ng-select": "^13.9.1",
"@ngx-translate/http-loader": "^8.0.0",
"@popperjs/core": "^2.11.8",
"@release-it/conventional-changelog": "^9.0.2",
"@slickgrid-universal/composite-editor-component": "~5.10.1",
"@slickgrid-universal/custom-tooltip-plugin": "~5.10.1",
"@slickgrid-universal/excel-export": "~5.10.1",
"@slickgrid-universal/graphql": "~5.10.1",
"@slickgrid-universal/odata": "~5.10.1",
"@slickgrid-universal/text-export": "~5.10.1",
"@types/fnando__sparkline": "^0.3.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/sortablejs": "^1.15.8",
"angular-eslint": "^18.4.0",
"bootstrap": "^5.3.3",
"copyfiles": "^2.4.1",
"custom-event-polyfill": "^1.0.7",
"cypress": "^13.15.2",
"cypress-real-events": "^1.13.0",
"dompurify": "^3.2.1",
"eslint": "^9.14.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-n": "^17.13.1",
"fetch-jsonp": "^1.3.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-preset-angular": "^14.2.4",
"ng-packagr": "^18.2.1",
"ngx-bootstrap": "^18.1.3",
"npm-run-all2": "^7.0.1",
"release-it": "^17.10.0",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"sass": "^1.80.6",
"servor": "^4.0.2",
"sortablejs": "^1.15.3",
"stream-browserify": "^3.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.5.4",
"typescript-eslint": "^8.13.0",
"zone.js": "~0.15.0"
},
"engines": {
"node": ">=18.19.1"
},
"resolutions": {
"caniuse-lite": "1.0.30001679",
"express": "^4.21.1",
"semver": "^7.6.3",
"string-width": "4.2.3",
"wrap-ansi": "7.0.0",
"ws": "^8.18.0"
}
}