-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"name": "my-app",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"dev": "bunx --bun vite --host",
"build": "vite build",
"preview": "NODE_ENV=production bun run ./server.ts",
"preview-static": "vite preview",
"lint": "prettier --check .; eslint .; tsc --noEmit;",
"lint:fix": "prettier --write .; eslint --fix .; tsc --noEmit;",
"format": "prettier --write .",
"update": "bunx npm-check-updates --interactive --format group"
},
"keywords": [],
"author": "",
"devDependencies": {
"@hono/vite-dev-server": "^0.18.0",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-solid": "^0.14.5",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"dependencies": {
"hono": "^4.6.16",
"solid-js": "^1.9.3",
"vike": "0.4.212",
"vike-metadata-solid": "^1.0.4",
"vike-solid": "^0.7.8"
}
}