-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.04 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
{
"name": "gonads-starter",
"version": "0.0.5",
"description": "",
"scripts": {
"bundle:dev": "esbuild web/ts/index.ts --bundle --sourcemap --outfile=static/index.js",
"bundle:dev:watch": "esbuild web/ts/index.ts --bundle --sourcemap --outfile=static/index.js --watch",
"build:dev": "tsc && pnpm styles && pnpm bundle:dev",
"bundle:prod": "esbuild web/ts/index.ts --bundle --minify --sourcemap --outfile=static/index.js",
"build:prod": "tsc && pnpm styles && pnpm bundle:prod",
"styles": "tailwindcss -c ./tailwind.config.js -i web/styles/styles.css -o static/index.css",
"styles:watch": "tailwindcss -c ./tailwind.config.js -i web/styles/styles.css -o static/index.css --watch"
},
"author": "Nicholas Zanghi",
"devDependencies": {
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"esbuild": "^0.23.1",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.6.2"
},
"dependencies": {
"@sudodevnull/datastar": "^0.18.12"
}
}