-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "IonicSvelteKit",
"version": "0.0.1",
"private": true,
"homepage": "https://ionic-svelte.firebaseapp.com",
"repository": {
"type": "git",
"url": "https://github.com/Tommertom/svelte-ionic-npm.git"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && firebase deploy",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"doctoc": "doctoc README.md"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9",
"eslint-plugin-svelte": "^2",
"ionicons": "^7",
"prettier": "^3",
"prettier-plugin-svelte": "^3",
"svelte": "^4",
"svelte-check": "^3",
"svelte-highlight": "^7.1.2",
"svelte-preprocess": "^6",
"sveltekit-superforms": "^2",
"tslib": "^2.4.1",
"typescript": "^5",
"vite": "^5",
"vite-plugin-pwa": "^0.20",
"zod": "^3.21.4"
},
"type": "module",
"dependencies": {
"@ionic/core": "^8",
"ionic-svelte": "^0.5.77",
"localforage": "^1.10.0"
}
}