-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 986 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
25
26
27
28
29
30
31
32
{
"name": "kuhluh",
"version": "0.3.0",
"type": "module",
"description": "A modern React state management demo using TanStack Query and Zustand",
"repository": "https://github.com/don-smith/kuhluh",
"main": "server/index.ts",
"author": "Don Smith <don@antiantonym>",
"license": "ISC",
"scripts": {
"start": "bun build client/index.tsx --outfile server/static/bundle.js --watch & bun run --watch server/index.ts",
"build": "bun build client/index.tsx --outfile server/static/bundle.js",
"test": "bun test"
},
"dependencies": {
"@tanstack/react-query": "^5.101.2",
"cors": "^2.8.6",
"express": "^4.21.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"bun-types": "^1.2.0",
"happy-dom": "^20.10.6"
}
}