-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "@vanio-cz/angular-forms",
"homepage": "https://github.com/vaniocz/angular-forms#readme",
"version": "0.0.7",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier \"src/**/*.{js,ts}\" --write"
},
"dependencies": {
"qs": "^6.9.1"
},
"devDependencies": {
"@4c/import-sort": "^4.3.6",
"@angular/common": "^9.0.6",
"@angular/core": "^9.0.6",
"@angular/forms": "^9.0.6",
"@angular/router": "^9.0.6",
"@angular/cli": "^9.0.6",
"@angular/compiler": "^9.0.6",
"@angular/compiler-cli": "^9.0.6",
"@angular-devkit/build-ng-packagr": "^0.900.6",
"@types/qs": "^6.9.1",
"ng-packagr": "^9.0.3",
"prettier": "^1.19.1",
"prettier-plugin-import-sort": "^0.0.3",
"serialize-ts": "github:vaniocz/serialize#fork",
"tslib": "^1.11.1",
"typescript": "~3.7.5"
},
"peerDependencies": {
"@angular/common": "^9.0.6",
"@angular/core": "^9.0.6",
"@angular/forms": "^9.0.6",
"@angular/router": "^9.0.6",
"serialize-ts": "github:vaniocz/serialize#fork"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
},
"importSort": {
".js, .ts": {
"parser": "typescript",
"style": "@4c/import-sort"
}
}
}