forked from katoid/angular-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.27 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.27 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
{
"name": "angular-grid-layout-src",
"scripts": {
"ng": "ng",
"start": "ng serve --port 1234",
"start:public": "ng serve --host 0.0.0.0 --port 1234",
"build": "ng build",
"build:demo-app": "ng build demo-app",
"build:demo-app:prod": "ng build demo-app --configuration production",
"build:grid": "ng build angular-grid-layout",
"build:grid:watch": "ng build angular-grid-layout --watch",
"build:grid:prod": "ng build --configuration production angular-grid-layout",
"serve:demo-app": "http-server -p 1234 --proxy http://localhost:1234? -c-1 dist/demo-app",
"deploy:demo-app": "ng deploy --base-href=/angular-grid-layout/",
"test": "ng test angular-grid-layout",
"lint": "ng lint",
"lint:build": "tsc -p tsconfig.lint.json",
"e2e": "ng e2e",
"copy-readme": "ts-node --project scripts/tsconfig.scripts.json scripts/copy-file.ts README.md dist/angular-grid-layout/README.md",
"commit": "git-cz",
"release": "standard-version"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.2",
"@angular/cdk": "^14.2.2",
"@angular/common": "^14.2.2",
"@angular/compiler": "^14.2.2",
"@angular/core": "^14.2.2",
"@angular/forms": "^14.2.2",
"@angular/material": "^14.2.2",
"@angular/platform-browser": "^14.2.2",
"@angular/platform-browser-dynamic": "^14.2.2",
"@angular/router": "^14.2.2",
"@swimlane/ngx-charts": "~20.1.0",
"ngx-color-picker": "^13.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.2",
"@angular-eslint/builder": "~13.4.0",
"@angular-eslint/eslint-plugin": "~13.4.0",
"@angular-eslint/eslint-plugin-template": "~13.4.0",
"@angular-eslint/schematics": "~13.4.0",
"@angular-eslint/template-parser": "~13.4.0",
"@angular/cli": "^14.2.2",
"@angular/compiler-cli": "^14.2.2",
"@commitlint/cli": "~11.0.0",
"@commitlint/config-angular": "~11.0.0",
"@commitlint/config-conventional": "~11.0.0",
"@katoid/eslint-plugin": "~0.1.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"angular-cli-ghpages": "~1.0.0",
"cz-conventional-changelog": "~3.3.0",
"eslint": "~8.12.0",
"http-server": "~0.12.3",
"husky": "~4.3.8",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^14.0.2",
"protractor": "~7.0.0",
"standard-version": "~9.1.0",
"ts-node": "~8.3.0",
"typescript": "~4.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"version": "2.1.0"
}