-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.37 KB
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
{
"name": "ngmd",
"version": "0.2.0",
"description": "Modern Angular docs-site starter built on AnalogJS, Vite, and Tailwind. Drop a markdown file, get a route.",
"license": "MIT",
"author": {
"name": "Kam",
"url": "https://github.com/erkamyaman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erkamyaman/ngmd.git"
},
"bugs": {
"url": "https://github.com/erkamyaman/ngmd/issues"
},
"keywords": [
"angular",
"analogjs",
"tailwind",
"docs",
"documentation",
"starter",
"shiki",
"markdown"
],
"type": "module",
"engines": {
"node": ">=20.19.1"
},
"scripts": {
"ng": "ng",
"dev": "vite",
"start": "pnpm run dev",
"build": "vite build",
"watch": "vite build --watch",
"test": "vitest",
"preview": "node dist/analog/server/index.mjs",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"private": true,
"dependencies": {
"@analogjs/content": "^2.5.1",
"@analogjs/router": "^2.5.1",
"@angular/animations": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/elements": "^21.2.14",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-server": "^21.0.0",
"@angular/router": "^21.0.0",
"@orama/orama": "^3.1.18",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.4",
"front-matter": "^4.0.2",
"h3": "^1.13.0",
"lucide-angular": "^0.577.0",
"marked": "^15.0.7",
"marked-gfm-heading-id": "^4.1.1",
"marked-highlight": "^2.2.1",
"marked-mangle": "^1.1.10",
"marked-shiki": "^1.2.1",
"motion": "^12.40.0",
"postcss": "^8.5.3",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"shiki": "^1.29.2",
"tailwindcss": "^4.1.4",
"ts-morph": "^28.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@analogjs/platform": "^2.5.1",
"@analogjs/vite-plugin-angular": "^2.5.1",
"@analogjs/vitest-angular": "^2.5.1",
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"jsdom": "^22.0.0",
"prettier": "^3.8.3",
"typescript": "~5.9.0",
"vite": "^8.0.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^4.1.0"
},
"overrides": {
"vite": "$vite",
"vitest": "$vitest"
}
}