/ package.json
package.json
 1  {
 2    "name": "but_a2_sae_s3",
 3    "module": "index.ts",
 4    "type": "module",
 5    "private": true,
 6    "scripts": {
 7      "tailwind:watch": "tailwindcss --watch  -i ./src/style.css -o ./src/public/style.css",
 8      "php": "php -S localhost:8080 -t src/public",
 9      "all": "concurrently 'npm:tailwind:watch' 'npm:php' 'xdg-open localhost:8080'"
10    },
11    "devDependencies": {
12      "@types/bun": "latest"
13    },
14    "peerDependencies": {
15      "typescript": "^5"
16    },
17    "dependencies": {
18      "@tailwindcss/cli": "^4.1.13",
19      "bootstrap": "^5.3.8",
20      "concurrently": "^9.2.1",
21      "live-server": "^1.2.2",
22      "sqlite": "^5.1.1",
23      "tailwindcss": "^4.1.13"
24    }
25  }