Skip to content

Commit 31f056f

Browse files
committed
Add diagnostics app.
1 parent 68738c5 commit 31f056f

29 files changed

+1284
-154
lines changed

demos/diagnostics-app/.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts
36+
37+
# ide
38+
.idea
39+
.fleet
40+
.vscode
41+
42+
# PWA
43+
**/public/workbox-*.js
44+
**/public/sw.js
45+
**/public/swe-worker-*
46+
**/public/worker-*.js
47+
**/public/fallback-*.js

demos/diagnostics-app/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# diagnostics-app
2+
3+
## 0.0.1

demos/diagnostics-app/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Diagnostics app

demos/diagnostics-app/package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "@journeyapps/powersync-diagnostics-app",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "vite",
7+
"build": "tsc -b && vite build",
8+
"preview": "vite preview",
9+
"start": "pnpm build && pnpm preview"
10+
},
11+
"dependencies": {
12+
"@journeyapps/powersync-react": "workspace:*",
13+
"@journeyapps/powersync-sdk-web": "workspace:*",
14+
"@journeyapps/wa-sqlite": "~0.1.1",
15+
"@mui/material": "^5.15.12",
16+
"@mui/x-data-grid": "^6.19.6",
17+
"js-logger": "^1.6.1",
18+
"lodash": "^4.17.21",
19+
"react": "^18.2.0",
20+
"react-dom": "^18.2.0",
21+
"react-router-dom": "^6.22.3"
22+
},
23+
"devDependencies": {
24+
"@types/lodash": "^4.14.202",
25+
"@types/node": "^20.11.25",
26+
"@types/react": "^18.2.64",
27+
"@types/react-dom": "^18.2.21",
28+
"@vitejs/plugin-react": "^4.2.1",
29+
"autoprefixer": "^10.4.18",
30+
"babel-loader": "^9.1.3",
31+
"typescript": "^5.4.2",
32+
"vite": "^5.1.5",
33+
"vite-plugin-pwa": "^0.19.2",
34+
"vite-plugin-top-level-await": "^1.4.1",
35+
"vite-plugin-wasm": "^3.3.0"
36+
}
37+
}
1.18 KB
Binary file not shown.
14.3 KB
Loading
23 KB
Loading
34 KB
Loading
40.8 KB
Loading
32.2 KB
Loading

0 commit comments

Comments
 (0)