-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.07 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.07 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
54
55
56
57
58
59
60
61
62
{
"name": "bun-starter",
"module": "server.js",
"version": "0.8.2",
"scripts": {
"tailwind:watch": "bun x @tailwindcss/cli -i ./public/styles/input.css -o ./public/styles/output.css --watch",
"server:js": "bun run ./src/server.js",
"dev": "bun run dev.js",
"debug": "bun --inspect run ./src/server.js",
"build": "bun build ./src/server.js --outdir ./dist --target bun ",
"start": "bun dist/server.js"
},
"type": "module",
"private": true,
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.5.1",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "latest",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.7.1",
"tailwindcss": "^4.1.18"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@cspell/dict-bash": "^4.2.2",
"@cspell/dict-css": "^4.0.19",
"@cspell/dict-en-gb": "^5.0.21",
"@cspell/dict-html": "^4.0.14",
"@cspell/dict-markdown": "^2.0.14",
"@cspell/dict-node": "^5.0.8",
"@cspell/dict-software-terms": "^5.1.19",
"@cspell/dict-typescript": "^3.2.3",
"better-auth": "^1.4.7",
"cspell-lib": "^9.4.0",
"lit": "^3.3.1",
"marked": "^17.0.1",
"quarkdown": "^0.0.1"
},
"description": "Every time one starts a new web based application there are the same building blocks needed before you get to the new code specific to the app. Almost every application needs menus, headers, footer, hamburger menus on small viewports, account sub menus, authentication, a reset password function and so on.",
"main": "dev.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HamptonNorth/bun-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HamptonNorth/bun-starter/issues"
},
"homepage": "https://github.com/HamptonNorth/bun-starter#readme"
}