-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.1 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
102
103
104
105
{
"name": "@senior-robot/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"start": "pnpm run svg && nx serve blog",
"start:host": "pnpm run svg && nx serve blog --host",
"start:prod": "pnpm run svg && pnpm nx serve blog --configuration=production",
"build": "pnpm run svg && pnpm nx build blog",
"svg": "svg-generator"
},
"svgGenerator": {
"outputPath": "./blog/src/app/svg/",
"srcPath": "./blog/src/public/assets/",
"svgoConfig": {
"plugins": [
"removeDimensions",
"cleanupAttrs",
{
"name": "convertColors",
"params": {
"currentColor": true
}
}
]
}
},
"private": false,
"dependencies": {
"@analogjs/content": "1.10.3",
"@analogjs/router": "1.10.3",
"@angular/animations": "19.0.5",
"@angular/common": "19.0.5",
"@angular/compiler": "19.0.5",
"@angular/core": "19.0.5",
"@angular/forms": "19.0.5",
"@angular/platform-browser": "19.0.5",
"@angular/platform-browser-dynamic": "19.0.5",
"@angular/platform-server": "19.0.5",
"@angular/router": "19.0.5",
"@jsverse/transloco": "^7.4.2",
"@ngneat/overview": "^6.0.0",
"@ngneat/svg-icon": "^7.1.6",
"@ngxpert/hot-toast": "^3.0.0",
"@senior-robot/source": "link:",
"@tanstack/angular-form": "0.23.3",
"dotenv": "^16.4.5",
"front-matter": "^4.0.2",
"luxon": "^3.4.0",
"mailtrap": "^3.3.0",
"marked": "^5.1.2",
"marked-gfm-heading-id": "^3.1.0",
"marked-highlight": "^2.0.6",
"marked-mangle": "^1.1.7",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "0.15.0"
},
"devDependencies": {
"@analogjs/platform": "1.10.3",
"@analogjs/vite-plugin-angular": "1.10.3",
"@angular-devkit/build-angular": "19.0.6",
"@angular-devkit/core": "19.0.6",
"@angular-devkit/schematics": "19.0.6",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "19.0.5",
"@angular/language-service": "19.0.5",
"@ngneat/svg-generator": "^7.0.2",
"@nx/angular": "20.3.1",
"@nx/cypress": "20.3.1",
"@nx/devkit": "20.3.1",
"@nx/eslint": "20.3.1",
"@nx/eslint-plugin": "20.3.1",
"@nx/js": "20.3.1",
"@nx/vite": "20.3.1",
"@nx/workspace": "20.3.1",
"@schematics/angular": "19.0.6",
"@tailwindcss/typography": "^0.5.10",
"@types/luxon": "^3.3.4",
"@types/node": "18.19.15",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "7.18.0",
"@vercel/node": "^2.15.9",
"autoprefixer": "^10.4.14",
"cypress": "13.13.1",
"daisyui": "^3.5.1",
"destr": "^2.0.1",
"jsdom": "^22.1.0",
"nx": "20.3.1",
"postcss": "^8.4.27",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2",
"tailwindcss": "^3.3.3",
"typescript": "5.6.3",
"vite": "5.2.7",
"vitest": "1.4.0"
}
}