-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 768 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"type": "module",
"private": true,
"scripts": {
"_build_comment": "compiling typescript css file, then running vite ",
"build": "npx tailwindcss -i ./src/style.css -o ./public/style.minified.css && vite build",
"_dev_comment": "concurrently running tailwind cli and vite ",
"dev": "concurrently \"vite\" \"npx tailwindcss -i ./src/style.css -o ./public/style.minified.css --watch\""
},
"devDependencies": {
"@inlang/core": "^0.3.0-prerelease.6",
"concurrently": "^7.5.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0",
"vitest": "^0.25.1"
},
"dependencies": {
"@solid-primitives/i18n": "^1.1.2",
"daisyui": "^2.39.1",
"solid-js": "^1.6.2"
}
}