-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 951 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
{
"name": "project",
"version": "1.0.0",
"main": "index.html",
"scripts": {
"watch": "tailwindcss -i src/style.css -o dist/style.css --watch",
"watch:js": "esbuild src/script.js --bundle --outfile=dist/script.js --watch",
"dev": "live-server --watch=index.html,src,dist",
"start": "concurrently \"npm run watch\" \"npm run watch:js\" \"npm run dev\"",
"build:js": "esbuild src/script.js --bundle --minify --outfile=dist/script.js",
"build:css": "tailwindcss -i src/style.css -o dist/style.css --minify",
"build:min": "esbuild dist/style.css --minify --outfile=dist/style.min.css",
"build": "npm run build:js && npm run build:css && npm run build:min"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"tailwindcss": "^3.4.14"
}
}