-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
24 lines (24 loc) · 922 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": "svelte-typescript-esbuild-tailwind-template",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"node esbuild watch\" \"npx tailwindcss -i ./src/tailwind.css -o ./public/build/bundle.css --watch\"",
"lint": "svelte-check --tsconfig ./tsconfig.json && prettier --plugin-search-dir=. --write .",
"build": "node esbuild prod && npx tailwindcss -i ./src/tailwind.css -o ./public/build/bundle.css && csso ./public/build/bundle.css --output ./public/build/bundle.css"
},
"devDependencies": {
"@tsconfig/svelte": "^3.0.0",
"concurrently": "^7.0.0",
"csso-cli": "^3.0.0",
"esbuild": "^0.14.27",
"esbuild-svelte": "^0.6.3",
"live-server": "^1.2.1",
"prettier": "^2.6.0",
"prettier-plugin-svelte": "^2.6.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.6",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
}
}