-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "svelte-ionic-app-tabs-example",
"description": "A trivial example app demonstrating how to mix Ionic's tabs with SvelteKit's routes.",
"version": "0.0.1",
"private": false,
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/briznad/svelte-ionic-app-tabs-example.git"
},
"scripts": {
"dev": "vite dev --host --open",
"build": "vite build",
"preview": "npm run build && vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "eslint ."
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-svelte3": "^4.0.0",
"sass": "^1.62.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.3",
"vitest": "^0.25.3"
},
"type": "module",
"dependencies": {
"@ionic/core": "^7.0.3",
"briznads-helpers": "^1.0.18",
"ionic-svelte": "^0.5.77",
"ionicons": "^7.1.0"
}
}