-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
47 lines (47 loc) · 1.75 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
{
"name": "svelte_capacitor",
"version": "2.0.0",
"scripts": {
"#Build: Core": "Thesee scripts build the core application (routing logic, and views)",
"build:app": "routify -b && vite build",
"build:routify": "routify",
"#Platform: Build": "These build the application for their specific platforms",
"build:android": "run-s build:app cap-run:android",
"build:ios": "run-s build:app cap-run:ios",
"#Platform: Sync": "These build the application for their specific platforms",
"cap-run:android": "cap sync android && cap open android",
"cap-run:ios": "cap sync ios && cap open ios",
"#Dev: Platform": "These enable HMR (Hot module reloading) directly on the device - please check the readme.md for more on this.",
"dev:ios": "run-p dev:start cap-run:ios",
"dev:android": "run-p dev:start cap-run:android",
"#Dev: Core": "These allow the code to be developed with HMR",
"dev:preview": "vite preview",
"dev:start": "run-p build:routify dev:vite",
"dev:vite": "vite --host --port 5001",
"#Utilities": "Various utilities",
"validate": "svelte-check"
},
"devDependencies": {
"@roxi/routify": "^2.18.0",
"@sveltejs/vite-plugin-svelte": "*",
"@tsconfig/svelte": "^1.0.10",
"cordova-res": "^0.15.4",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.37.0",
"svelte-preprocess": "^4.7.3",
"typescript": "^4.2.4",
"vite": "^2.2.3",
"vite-aliases": "^0.6.3",
"vite-plugin-compression": "^0.2.5",
"vite-tsconfig-paths": "^3.3.10"
},
"dependencies": {
"@capacitor/android": "^3.0.1",
"@capacitor/cli": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/ios": "^3.0.1"
}
}