-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "example-capacitor",
"version": "0.0.11",
"description": "Example of using Capacitor with PowerSync",
"main": "index.js",
"private": true,
"author": "PowerSync",
"keywords": [
"capacitor",
"mobile"
],
"type": "module",
"scripts": {
"sync": "npx cap sync",
"ios": "pnpm build && pnpm sync && npx cap run ios",
"android": "pnpm build && pnpm sync && npx cap run android",
"test:build": "pnpm build && npx cap sync android && npx cap build android",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@capacitor-community/sqlite": "^7.0.2",
"@capacitor/android": "^7.4.3",
"@capacitor/core": "7.4.3",
"@capacitor/ios": "^7.4.3",
"@capacitor/splash-screen": "7.0.0",
"@powersync/capacitor": "^0.5.2",
"@journeyapps/wa-sqlite": "^1.6.0",
"@powersync/react": "^1.10.0",
"@powersync/web": "^1.37.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.0"
},
"devDependencies": {
"@capacitor/cli": "^7.4.3",
"@swc/core": "~1.6.0",
"@mui/material": "^5.15.12",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"vite": "^5.2.11",
"vite-plugin-require": "^1.2.14"
}
}