-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 KB
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
{
"name": "website",
"version": "1.0.0",
"description": "The official website repository of the .NET Cameroon Community!",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "dotnet test src",
"dev": "npm run tailwind && dotnet run --project ./src/app",
"start": "dotnet run --project ./src/app",
"watch": "npm run tailwind && dotnet watch --project ./src/app",
"tailwind": "npx @tailwindcss/cli -i ./src/app/styles/input.css -o ./src/app/wwwroot/app.css",
"tailwind-watch": "npx @tailwindcss/cli -i ./src/app/styles/input.css -o ./src/app/wwwroot/app.css --watch",
"admin:dev": "cd src/admin && pnpm run dev",
"admin:build": "cd src/admin && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotnetcameroon/website.git"
},
"author": ".NET Cameroon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotnetcameroon/website/issues"
},
"homepage": "https://github.com/dotnetcameroon/website#readme",
"dependencies": {
"@tailwindcss/cli": "^4.1.13",
"@vercel/analytics": "^1.4.1",
"tailwindcss": "^4.1.13"
}
}