-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.72 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "template-solidjs-elysia",
"version": "0.0.0",
"description": "Template for SolidJS web app and Elysia BFF layer. Tools include Bun, TypeScript, ESLint, Prettier, Vitest, MSW, Docker and GHA",
"type": "module",
"scripts": {
"build": "bun typecheck && bun build:vite",
"build:vite": "vite build",
"dev": "vite",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"serve": "vite preview",
"start": "vite",
"start:msw": "VITE_MSW=true vite",
"start:server": "bun backend/server.ts",
"test": "bun run test:ui && bun run test:server",
"test:ui": "vitest run",
"test:ui:cov": "vitest run --coverage",
"test:server": "bun test backend",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitest/coverage-istanbul": "^2.1.5",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.4",
"jsdom": "^25.0.1",
"msw": "^2.6.6",
"prettier": "^3.4.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.5"
},
"dependencies": {
"@elysiajs/eden": "^1.1.3",
"@elysiajs/static": "^1.1.1",
"@solidjs/router": "^0.15.1",
"@tanstack/solid-query": "^5.60.6",
"elysia": "^1.1.25",
"solid-js": "^1.9.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}