-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
63
{
"author": {
"email": "dave@dave.io",
"name": "Dave Williams",
"url": "https://github.com/daveio"
},
"dependencies": {
"@biomejs/biome": "^2.3.15",
"@fontsource-variable/sora": "^5.2.8",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.23",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.24",
"daisyui": "^5.5.18",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^16.1.1",
"postcss-nesting": "^14.0.0",
"stylelint": "^17.3.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/css": "^1.0.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^8.0.0",
"@trunkio/launcher": "^1.3.4",
"esbuild": "^0.28.0",
"eslint": "^10.0.0",
"globals": "^17.3.0"
},
"engines": {
"bun": "^1.3.11",
"node": "^24.13.1"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/daveio/genderbase/blob/main/LICENSE"
}
],
"name": "genderbase",
"packageManager": "bun@1.3.11",
"private": true,
"scripts": {
"build": "bun run build:js && bun run build:css",
"build:css": "bun run postcss ./app/assets/stylesheets/application.postcss.css -o ./app/assets/builds/application.css",
"build:js": "bun run esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets"
},
"trustedDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild"
]
}