-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 1.97 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
{
"name": "ngx-speed-dial",
"description": "FAB Speed Dial component for Angular Material",
"version": "17.0.0",
"scripts": {
"build": "rm -rf dist 2> /dev/null && cp -f package.json README.md projects/ngx-speed-dial/ && npx ng build ngx-speed-dial",
"prepare": "husky"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/buu700/ngx-speed-dial.git"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true
},
"dependencies": {
"tslib": "^2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17",
"@angular/animations": "^17",
"@angular/cdk": "^16",
"@angular/cli": "^17",
"@angular/common": "^17",
"@angular/compiler": "^17",
"@angular/compiler-cli": "^17",
"@angular/core": "^17",
"@angular/forms": "^17",
"@angular/material": "^16",
"@angular/platform-browser": "^17",
"@angular/platform-browser-dynamic": "^17",
"@angular/router": "^17",
"@cyph/prettier": "*",
"@cyph/pretty-quick": "*",
"@types/jasmine": "~3.10.0",
"@types/node": "^20",
"@types/webpack": "^5",
"husky": "^9",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^17",
"rxjs": "^7",
"typescript": "~5.3",
"webpack": "^5",
"zone.js": "*"
},
"peerDependencies": {
"@angular/animations": "^17",
"@angular/cdk": "^17",
"@angular/common": "^17",
"@angular/core": "^17",
"@angular/forms": "^17",
"@angular/material": "^17",
"@angular/platform-browser": "^17",
"@angular/platform-browser-dynamic": "^17",
"@angular/router": "^17",
"rxjs": "^7",
"zone.js": "*"
}
}