-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"private": true,
"name": "wes-dev",
"version": "2022.11.19",
"description": "https://wes.dev/",
"homepage": "https://wes.dev/",
"repository": "github:WesSouza/wes.dev",
"author": "Wes Souza <[email protected]>",
"license": "MIT",
"keywords": [
"personal website",
"Wes Souza",
"Wesley de Souza"
],
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check && tsc --noEmit && eslint . && prettier --check src",
"check:fix": "eslint --fix . && prettier --write src",
"dev": "astro dev",
"generate-acknowledgements": "tsx ./src/scripts/Wes95_Acknowledgements.ts",
"generate-sprites": "tsx ./src/scripts/Wes95_Sprites.ts && prettier --write src/styles/Wes95/Icons.generated.css",
"preview": "astro build && wrangler pages dev ./dist",
"start": "astro dev"
},
"engines": {
"node": "20",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"dependencies": {
"@astrojs/cloudflare": "^12.1.0",
"@astrojs/solid-js": "5.0.0",
"@atproto/api": "^0.13.18",
"@solid-primitives/resize-observer": "^2.0.26",
"@trpc/client": "11.0.0-rc.648",
"@trpc/server": "11.0.0-rc.648",
"anchorme": "^3.0.8",
"astro": "5.1.0",
"solid-js": "^1.9.3",
"solid-markdown": "^2.0.13",
"tsx": "^4.19.2",
"zod": "^3.23.8",
"zod-search-params": "^0.1.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@eslint/js": "^9.15.0",
"@types/license-checker": "^25.0.6",
"@types/node": "22.9.3",
"@types/spritesmith": "^3.4.5",
"@types/youtube": "^0.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"license-checker": "^25.0.1",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"spritesmith": "^3.5.1",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0",
"wrangler": "^3.98.0"
}
}