-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "rwsdk-website",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite dev --force",
"test": "vitest run",
"build": "vite build",
"preview": "vite build && vite preview",
"ship": "vite build && wrangler deploy",
"types": "wrangler types --include-runtime false --strict-vars false",
"tail": "wrangler tail"
},
"dependencies": {
"@std/front-matter": "jsr:^1.0.9",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"nanoid": "^5.1.7",
"react": "19.3.0-canary-da641178-20260129",
"react-dom": "19.3.0-canary-da641178-20260129",
"react-server-dom-webpack": "19.3.0-canary-da641178-20260129",
"rwsdk": "1.0.4"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.30.2",
"@cloudflare/workers-types": "^4.20260329.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@types/markdown-it": "^14.1.2",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.3.1",
"fast-glob": "^3.3.3",
"mime-types": "^3.0.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.2",
"wrangler": "4.78.0"
},
"prettier": {
"printWidth": 120,
"useTabs": false,
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}