-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 931 Bytes
/
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": "portkey",
"version": "0.0.0",
"description": "frontend of portkey",
"private": true,
"scripts": {
"build:css": "tailwindcss -i assets/css/main.css build -m -o static/css/main.css",
"build:js": "esbuild assets/js/main.js --bundle --minify --sourcemap --outfile=static/js/main.js",
"build": "npm run build:css && npm run build:js",
"watch:css": "tailwindcss -i assets/css/main.css build -o static/css/main.css --watch",
"watch:js": "esbuild assets/js/main.js --bundle --sourcemap --outfile=static/js/main.js --watch",
"watch": "concurrently \"npm run watch:css\" \"npm run watch:js\"",
"prepare": "husky"
},
"author": "kodehat",
"license": "AGPL-3.0",
"devDependencies": {
"@alpinejs/persist": "^3.14.3",
"alpinejs": "^3.14.3",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"htmx.org": "^2.0.3",
"husky": "^9.1.6",
"tailwindcss": "^3.4.14"
}
}