-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 832 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 832 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
{
"name": "learning-platform",
"private": true,
"version": "2.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build-docker": "docker build -t xandao6/learning-platform:latest .",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"@tsconfig/svelte": "^2.0.1",
"@types/uuid": "^8.3.4",
"bootstrap-icons": "^1.8.1",
"svelte": "^3.44.0",
"svelte-check": "^2.2.7",
"svelte-preprocess": "^4.9.8",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.8.0"
},
"dependencies": {
"push-dir": "^0.4.1",
"svelte-navigator": "^3.1.5",
"uuid": "^8.3.2"
}
}