turborepo/examples/with-solid/apps/docs/package.json
ssshashank 93dc6429bf
feat(examples): add example with-solid (#10144)
### Description
A new example template utilizing
[Solid-Start](https://start.solidjs.com/) has been added to the
`examples` directory.
This template is a reference implementation for projects looking to
integrate `SolidJS` with the `turbo` repo ecosystem.

### Testing Instructions

<!--
  Give a quick description of the steps to test your changes.
-->

Co-authored-by: Shekhar S<shekhar8897@gmail.com>

---------

Co-authored-by: Turbobot <turbobot@vercel.com>
2025-03-11 12:02:28 -06:00

34 lines
873 B
JSON

{
"name": "docs",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"test": "vitest run",
"test-watch": "vitest",
"test-ui": "vitest --ui"
},
"type": "module",
"dependencies": {
"@repo/ui": "workspace:*",
"@tailwindcss/vite": "^4.0.9",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/tailwind-config": "workspace:*",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "^1.1.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/user-event": "^14.5.2",
"@vitest/ui": "3.0.5",
"jsdom": "^25.0.1",
"solid-js": "^1.9.3",
"typescript": "^5.6.3",
"vinxi": "^0.5.3",
"vite-plugin-solid": "^2.11.6",
"vitest": "3.0.5"
}
}