-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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": "angular-toh-modernized",
"version": "0.1.0",
"scripts": {
"dev": "ng serve",
"format": "prettier -w .",
"serve": "http-server ./dist/angular-toh-modernized",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"ng": "ng"
},
"private": true,
"dependencies": {
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/router": "^17.3.0",
"angular-in-memory-web-api": "^0.17.0",
"rxjs": "^7.8.1",
"zone.js": "^0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@tailwindcss/forms": "^0.5.3",
"http-server": "^14.1.1",
"postcss": "^8.4.33",
"prettier": "^3.2.5",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"attributeGroups": [
"$ANGULAR_STRUCTURAL_DIRECTIVE",
"$ANGULAR_ELEMENT_REF",
"$CODE_GUIDE",
"^formControlName$",
"^icon$",
"^label$",
"^placeholder$",
"^routerLink$",
"^[a-z]",
"$ANGULAR"
],
"attributeSort": "ASC"
}
}