-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "kyleblankrollins-portfolio",
"private": true,
"version": "1.0.0",
"description": "Personal portfolio website for Kyle Blank Rollins",
"type": "module",
"scripts": {
"dev": "vite",
"dev:git-aware": "GIT_AWARE=true vite",
"build": "tsc && vite build",
"build:analyze": "tsc && ANALYZE=true vite build",
"build:git-aware": "tsc && GIT_AWARE=true vite build",
"preview": "vite preview",
"admin": "npm run admin:server & npm run admin:ui",
"admin:server": "tsx source/admin/server/index.ts",
"admin:ui": "vite --config source/admin/vite.config.ts",
"lint:prose": "tsx scripts/lint-prose.ts --changed-only",
"lint:prose:all": "tsx scripts/lint-prose.ts",
"lint:prose:drafts": "tsx scripts/lint-prose.ts --drafts-only",
"lint:prose:verbose": "tsx scripts/lint-prose.ts --verbose"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/node": "^20.19.17",
"@types/prismjs": "^1.26.5",
"cors": "^2.8.5",
"express": "^4.22.1",
"glob": "^11.1.0",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"tsx": "^4.0.0",
"typescript": "~5.8.3",
"vite": "^7.1.11"
},
"dependencies": {
"lit": "^3.3.1",
"marked": "^9.0.0",
"prismjs": "^1.30.0"
}
}