-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.17 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
29
30
31
32
33
{
"name": "space-tourism",
"version": "1.0.0",
"main": "public/js/bundle.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run esbuild-watch\" \"npm run serve\" \"npm run tailwind\"",
"esbuild-watch": "esbuild ./src/client/index.ts --bundle --outfile=./public/js/bundle.js --watch --sourcemap",
"serve": "node browsersync-config.js",
"build": "tsc && esbuild ./src/client/index.ts --bundle --outfile=./public/js/bundle.js --minify --sourcemap",
"tailwind": "npx tailwindcss -i ./src/client/styles/input.css -o ./public/css/style.css --watch"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"browser-sync": "^3.0.3",
"concurrently": "^9.0.1",
"connect-history-api-fallback": "^2.0.0",
"esbuild": "0.24.0",
"eslint": "^9.13.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}