-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.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
{
"name": "@vanio-cz/angular-material",
"homepage": "https://github.com/vaniocz/angular-material#readme",
"version": "0.0.15",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"postbuild": "node -e \"var fs = require('fs'); fs.createReadStream('src/theming.scss').pipe(fs.createWriteStream('dist/theming.scss'))\"",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier \"src/**/*.{js,ts}\" --write"
},
"dependencies": {},
"devDependencies": {
"@4c/import-sort": "^4.3.6",
"@angular-devkit/build-ng-packagr": "^0.900.6",
"@angular/animations": "^9.0.6",
"@angular/cdk": "^9.1.3",
"@angular/cli": "^9.0.6",
"@angular/common": "^9.0.6",
"@angular/compiler": "^9.0.6",
"@angular/compiler-cli": "^9.0.6",
"@angular/core": "^9.0.6",
"@angular/forms": "^9.0.6",
"@angular/material": "^9.1.3",
"@angular/platform-browser": "^9.0.6",
"ng-packagr": "^9.0.3",
"prettier": "^1.19.1",
"prettier-plugin-import-sort": "^0.0.3",
"tslib": "^1.11.1",
"typescript": "~3.7.5"
},
"peerDependencies": {
"@angular/animations": "^9.0.6",
"@angular/cdk": "^9.1.3",
"@angular/common": "^9.0.6",
"@angular/core": "^9.0.6",
"@angular/material": "^9.1.3",
"@angular/forms": "^9.0.6"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
},
"importSort": {
".js, .ts": {
"parser": "typescript",
"style": "@4c/import-sort"
}
}
}