-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.12 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
{
"name": "belnejoum",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"publish" : "npm-run-all -s css:build css:minify dotnet:publish firebase:deploy",
"watch" : "npm-run-all -p css:watch dotnet:watch",
"css:build": "npx tailwindcss -i ./src/Client/wwwroot/css/src.css -o ./src/Client/wwwroot/css/dist.css",
"css:watch": "npx tailwindcss -i ./src/Client/wwwroot/css/src.css -o ./src/Client/wwwroot/css/dist.css --watch",
"css:minify" : "lightningcss --minify --bundle ./src/Client/wwwroot/css/dist.css -o ./src/Client/wwwroot/css/dist.css --sourcemap",
"dotnet:publish" : "dotnet publish ./src/Client -c Release -p:PublishTrimmed=true -o ./dist",
"dotnet:watch" : "dotnet watch --project ./src/Client/Client.csproj",
"firebase:deploy" : "firebase deploy",
"deploy" : "npm-run-all -s css:build css:minify dotnet:publish firebase:deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"npm-run-all": "^4.1.5",
"plumber-sass": "^0.7.7",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"lightningcss-cli": "^1.28.1"
}
}