forked from cmglez10/ng-datatable
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
62
63
64
65
66
67
68
{
"name": "ng-datatable",
"version": "21.0.0",
"packageManager": "pnpm@10.26.2+sha512.0e308ff2005fc7410366f154f625f6631ab2b16b1d2e70238444dd6ae9d630a8482d92a451144debc492416896ed16f7b114a86ec68b8404b2443869e68ffda6",
"scripts": {
"ng": "ng",
"start": "pnpm run build:lib && ng serve demo",
"build:lib": "ng build ng-datatable",
"build:demo": "ng build demo",
"test": "ng test",
"lint": "ng lint",
"publish:prod": "pnpm run build:lib && cd dist/ng-datatable && pnpm publish",
"publish:next": "pnpm run build:lib && cd dist/ng-datatable && pnpm publish --tag next",
"format": "prettier --write projects/",
"format:check": "prettier --check projects/"
},
"author": "git@honegger.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PascalHonegger/ng-datatable.git"
},
"private": true,
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"dependencies": {
"@angular/animations": "^21.0.6",
"@angular/common": "^21.0.6",
"@angular/compiler": "^21.0.7",
"@angular/core": "^21.0.7",
"@angular/forms": "^21.0.6",
"@angular/platform-browser": "^21.0.6",
"@angular/platform-browser-dynamic": "^21.0.6",
"@angular/router": "^21.0.6",
"bootstrap": "^5.3.8",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/cli": "^21.0.4",
"@angular/compiler-cli": "^21.0.6",
"@angular/language-service": "^21.0.6",
"@eslint/js": "^9.39.2",
"@types/jasmine": "^5.1.13",
"angular-eslint": "21.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jasmine-core": "^5.13.0",
"jasmine-spec-reporter": "~7.0.0",
"jsdom": "^27.4.0",
"ng-packagr": "^21.0.1",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
}
}