-
Notifications
You must be signed in to change notification settings - Fork 377
/
package.json
101 lines (101 loc) · 2.61 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
{
"name": "angular-gridster2",
"version": "18.0.1",
"license": "MIT",
"scripts": {
"husky": "husky",
"commitlint": "commitlint",
"lint-staged": "lint-staged",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-lib": "ng build angular-gridster2",
"test": "ng test",
"test-lib": "ng test angular-gridster2",
"lint": "ng lint",
"watch": "ng build --watch --configuration development",
"deploy": "ng deploy",
"postinstall": "husky install"
},
"homepage": "https://tiberiuzuld.github.io/angular-gridster2",
"bugs": {
"url": "https://github.com/tiberiuzuld/angular-gridster2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tiberiuzuld/angular-gridster2.git"
},
"description": "Angular gridster 2",
"keywords": [
"angular",
"angular2",
"typescript",
"dashboard",
"gridster",
"gridster2",
"resize",
"drag&drop",
"widgets"
],
"authors": [
"Tiberiu Zuld"
],
"files": [
"dist/*"
],
"dependencies": {
"@angular/animations": "18.0.0",
"@angular/cdk": "18.0.0",
"@angular/common": "18.0.0",
"@angular/compiler": "18.0.0",
"@angular/core": "18.0.0",
"@angular/forms": "18.0.0",
"@angular/material": "18.0.0",
"@angular/platform-browser": "18.0.0",
"@angular/platform-browser-dynamic": "18.0.0",
"@angular/router": "18.0.0",
"marked": "12.0.2",
"ngx-markdown": "18.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.1",
"@angular-eslint/builder": "17.5.1",
"@angular-eslint/eslint-plugin": "17.5.1",
"@angular-eslint/eslint-plugin-template": "17.5.1",
"@angular-eslint/schematics": "17.5.1",
"@angular-eslint/template-parser": "17.5.1",
"@angular/cli": "18.0.1",
"@angular/compiler-cli": "18.0.0",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/jasmine": "5.1.4",
"@types/node": "20.12.12",
"angular-cli-ghpages": "2.0.0-beta.2",
"eslint": "8.57.0",
"husky": "9.0.11",
"jasmine-core": "5.1.2",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "15.2.5",
"ng-packagr": "18.0.0",
"prettier": "3.2.5",
"typescript": "5.4.5",
"typescript-eslint": "7.10.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{html,scss,js,ts,md}": [
"prettier --write"
]
}
}