-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
27
28
29
30
31
32
33
34
35
{
"name": "trivia-chase",
"version": "0.1.0",
"license": "MIT",
"source": [
"./assets/scripts.js",
"./assets/styles.scss"
],
"targets": {
"default": {
"distDir": "./static"
}
},
"scripts": {
"fmt": "prettier --write .",
"build": "esbuild assets/scripts.js --bundle --minify --outdir=static/ && tailwindcss -i ./assets/styles.scss -o ./static/styles.css --minify",
"js:watch": "esbuild assets/scripts.js --bundle --outdir=static/ --watch=forever",
"tailwindcss:watch": "tailwindcss -i ./assets/styles.scss -o ./static/styles.css --watch",
"dev": "npm run js:watch & npm run tailwindcss:watch"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "latest",
"alpinejs": "latest",
"esbuild": "^0.20.2",
"htmx.org": "latest",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@iconify-json/bi": "^1.1.23",
"@iconify-json/material-symbols": "^1.1.73",
"@iconify/tailwind": "^0.1.4",
"prettier": "latest"
}
}