-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathpackage.json
110 lines (110 loc) · 4.36 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
{
"name": "ngx-datatable",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "npm run build:lib:prod",
"build:lib:prod": "ng build @swimlane/ngx-datatable --configuration production",
"copy-files": "cp docs/CHANGELOG.md dist/swimlane/ngx-datatable/CHANGELOG.md && cp README.md dist/swimlane/ngx-datatable/README.md && cp LICENSE dist/swimlane/ngx-datatable/LICENSE && cpx \"src/assets/**/*\" \"dist/swimlane/ngx-datatable/assets\" && cpx \"projects/swimlane/ngx-datatable/src/lib/themes/**/*\" \"dist/swimlane/ngx-datatable/themes\"",
"build:css": "scss-bundle -c ./scss-bundle.config.json && sass --no-source-map dist/swimlane/ngx-datatable",
"test": "yarn lint && yarn test:unit",
"test:unit": "ng test @swimlane/ngx-datatable --watch=false",
"test:watch": "ng test @swimlane/ngx-datatable",
"test:ci": "ng test @swimlane/ngx-datatable --watch=false --progress=false --browsers=ChromeHeadless",
"ci": "yarn lint && yarn prettier:ci && yarn test:ci",
"lint": "ng lint @swimlane/ngx-datatable",
"e2e": "ng e2e",
"prettier": "prettier --write \"{src,projects}/*.{js,ts,html,scss,css,md,json}\"",
"prettier:ci": "prettier --check \"{src,projects}/*.{js,ts,html,scss,css,md,json}\"",
"build-docs": "cross-env NODE_ENV=production ng build --configuration production --base-href=\"/ngx-datatable/\"",
"predeploy-docs": "yarn build-docs",
"deploy-docs": "angular-cli-ghpages --dir ./dist/ngx-datatable",
"package": "yarn build:lib:prod && yarn copy-files && yarn build:css",
"prepublish:lib": "yarn ci && yarn package",
"publish:lib": "npm publish ./dist/swimlane/ngx-datatable",
"prepack": "yarn package",
"pack": "npm pack ./dist/swimlane/ngx-datatable/",
"publish": "yarn publish:lib",
"prepublishOnly": "echo \"This is the workspace -- you probably meant run 'yarn publish'.\" && exit 1"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.4",
"@angular/cdk": "^18.2.14",
"@angular/common": "^19.1.4",
"@angular/compiler": "^19.1.4",
"@angular/core": "^19.1.4",
"@angular/forms": "^19.1.4",
"@angular/platform-browser": "^19.1.4",
"@angular/platform-browser-dynamic": "^19.1.4",
"@angular/router": "^19.1.4",
"rxjs": "~7.8.1",
"tslib": "~2.4.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.4",
"@angular-devkit/core": "^19.1.4",
"@angular-devkit/schematics": "^19.1.4",
"@angular-eslint/builder": "^18.0.0",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.0",
"@angular-eslint/schematics": "^18.0.0",
"@angular-eslint/template-parser": "^18.0.0",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.4",
"@angular/language-service": "^19.1.4",
"@swimlane/eslint-config": "^2.0.0",
"@swimlane/prettier-config-swimlane": "^3.0.2",
"@types/jasmine": "4.3.0",
"@types/node": "16.11.59",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@typescript-eslint/types": "8.23.0",
"@typescript-eslint/utils": "8.23.0",
"@web/test-runner": "^0.19.0",
"angular-cli-ghpages": "^2.0.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-no-only-tests": "3.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-security": "1.5.0",
"husky": "^4.2.4",
"jasmine": "^3.5.0",
"jasmine-core": "4.4.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "^19.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"protractor": "~7.0.0",
"sass": "^1.77.6",
"scss-bundle": "^3.1.1",
"ts-node": "10.9.1",
"typescript": "5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "20.14.0",
"yarn": "4.5.1"
},
"packageManager": "[email protected]"
}