-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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": "go-htmx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "$(go env GOPATH)/bin/air & open http://localhost:3000",
"build": "go build -o main -ldflags \"-X 'main.version=$(git rev-parse HEAD)'\" ./src",
"start": "./main",
"prestart": "git config --global --add safe.directory /app",
"kill": "lsof -ti tcp:3000 | xargs kill -9 && lsof -ti tcp:42069 | xargs kill -9"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.10",
"htmx.org": "^1.9.8",
"mapbox-gl": "^2.15.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"@types/mapbox-gl": "^2.7.18",
"autoprefixer": "^10.4.16",
"browser-sync": "^2.29.3",
"bs-html-injector": "^3.0.3",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^16.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.5"
}
}