forked from swimlane/ngx-datatable
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.14 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ngx-datatable",
"version": "26.1.0",
"engines": {
"npm": "11"
},
"commitlint": {
"extends": [
"@siemens/commitlint-config/.commitlintrc.js"
]
},
"prettier": "@siemens/prettier-config",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "http-server dist/ngx-datatable-examples -s -p 4200 -a 127.0.0.1",
"build": "ng build",
"build:prod": "ng build --configuration production",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:lib:prod": "ng build ngx-datatable-lib --configuration production",
"copy-files": "cpy \"{LICENSE,README.md}\" dist/ngx-datatable/ && cpy \"src/assets/**/*\" \"dist/ngx-datatable/assets\"",
"build:css": "sass --no-source-map dist/ngx-datatable/themes",
"test": "npm run lint:commit && npm run lint:scss && npm run lint && npm run test:unit",
"test:unit": "ng test ngx-datatable-lib --watch=false",
"test:watch": "ng test ngx-datatable-lib",
"test:ci": "ng test ngx-datatable-lib --configuration=ci",
"ci": "npm run lint && npm run test:ci",
"lint": "ng lint",
"lint:commit": "commitlint --from=origin/main",
"lint:scss": "stylelint **.scss",
"e2e:prepare": "playwright install",
"e2e": "playwright test",
"e2e:update": "yarn e2e --update-snapshots",
"package": "npm run build:lib:prod && npm run copy-files && npm run build:css"
},
"private": true,
"dependencies": {
"@angular/animations": "21.0.8",
"@angular/cdk": "21.0.6",
"@angular/common": "21.0.8",
"@angular/compiler": "21.0.8",
"@angular/core": "21.0.8",
"@angular/forms": "21.0.8",
"@angular/platform-browser": "21.0.8",
"@angular/platform-browser-dynamic": "21.0.8",
"@angular/router": "21.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/builder": "21.3.1",
"@angular/build": "21.0.5",
"@angular/cli": "21.0.5",
"@angular/compiler-cli": "21.0.8",
"@angular/language-service": "21.0.8",
"@axe-core/playwright": "4.11.3",
"@playwright/test": "1.60.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@siemens/commitlint-config": "4.2.1",
"@siemens/eslint-config-angular": "4.2.1",
"@siemens/eslint-plugin-defaultvalue": "4.2.1",
"@siemens/prettier-config": "4.2.1",
"@siemens/stylelint-config-scss": "4.2.1",
"@types/node": "24.12.4",
"@vitest/browser-playwright": "4.1.7",
"@vitest/coverage-v8": "4.1.7",
"angular-eslint": "21.4.0",
"axe-html-reporter": "2.2.11",
"cpy-cli": "7.0.0",
"eslint": "10.4.0",
"eslint-plugin-headers": "1.3.4",
"eslint-plugin-jsdoc": "63.0.0",
"eslint-plugin-perfectionist": "5.9.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-tsdoc": "0.5.2",
"http-server": "14.1.1",
"ng-packagr": "21.0.1",
"prettier": "3.8.3",
"sass": "1.100.0",
"semantic-release": "25.0.3",
"stylelint": "16.26.1",
"stylelint-scss": "7.1.1",
"stylelint-use-logical-spec": "5.0.1",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.59.4",
"vitest": "4.1.7"
}
}