-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "stacks-voice",
"author": "Marvin Janssen",
"version": "1.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"db:create": "node scripts/db_create.js"
},
"devDependencies": {
"@micro-stacks/svelte": "^1.0.2",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/marked": "^4.0.3",
"@types/sqlite3": "^3.1.8",
"dotenv": "^16.0.1",
"micro-stacks": "^1.1.1",
"svelte": "^3.44.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"vite": "^3.0.0"
},
"type": "module",
"dependencies": {
"marked": "^4.0.18",
"sqlite3": "^5.0.11"
}
}