-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
{
"name": "portfolio-v3",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.5.0",
"scripts": {
"bootstrap": "pnpm install && pnpm rs:build && pnpm playwright:init",
"dev": "astro dev",
"build": "astro build",
"build:e2e": "IS_PLAYWRIGHT=true astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:title-case": "./scripts/target/release/lint-title-case",
"test:watch": "vitest watch",
"test": "vitest run",
"playwright:init": "playwright install chromium",
"e2e:dev": "IS_PLAYWRIGHT=true playwright test --ui",
"e2e:build": "IS_PLAYWRIGHT=true IS_BUILD=true playwright test",
"rs:build": "cd scripts && cargo build --release",
"new-garden": "./scripts/target/release/garden",
"new-post": "./scripts/target/release/post"
},
"dependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/react": "^4.1.2",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@codesandbox/sandpack-react": "^2.19.10",
"@codesandbox/sandpack-themes": "^2.0.21",
"@ctrl/tinycolor": "^4.1.0",
"@lekoarts/flickr-loader": "^1.2.2",
"@nanostores/persistent": "^0.10.2",
"@nanostores/react": "^0.7.3",
"@sindresorhus/slugify": "^2.2.1",
"@unpic/astro": "^0.1.0",
"@vanilla-extract/css": "^1.17.0",
"@vanilla-extract/sprinkles": "^1.6.3",
"astro": "^5.1.3",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"lodash-es": "^4.17.21",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-to-string": "^4.0.0",
"nanoid": "^5.0.9",
"nanostores": "^0.11.3",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-sandpack": "^0.0.3",
"sharp": "^0.33.5",
"typescript": "^5.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@astrojs/check": "^0.9.4",
"@netlify/edge-functions": "^2.11.1",
"@playwright/test": "^1.49.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.10",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vanilla-extract/private": "^1.0.6",
"@vanilla-extract/vite-plugin": "^4.0.19",
"astro-eslint-parser": "^1.1.0",
"csstype": "^3.1.3",
"eslint": "9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^0.1.3",
"prettier-plugin-astro": "^0.14.1",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"cssesc": "./overrides/cssesc",
"vite": "^6.0.5"
}
}
}