-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "scena",
"description": "Open source YouTube clone",
"version": "0.0.1",
"private": true,
"author": "Gašper Dobrovoljc",
"repository": "https://github.com/gapidobri/scena",
"type": "module",
"scripts": {
"dev": "vite dev --host 0.0.0.0 --port 3000",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prisma:generate": "prisma generate"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@mermaid-js/mermaid-cli": "^10.2.2",
"@ory/kratos-client": "0.0.0-next.a36dda23f209",
"@paralleldrive/cuid2": "^2.2.1",
"@sveltejs/adapter-node": "^1.2.4",
"@sveltejs/kit": "1.0.0-next.585",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.18",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vime/core": "^5.4.0",
"autoprefixer": "^10.4.14",
"aws-sdk": "^2.1396.0",
"daisyui": "^3.1.0",
"dayjs": "^1.11.8",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"hls.js": "^1.4.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prisma": "^4.15.0",
"prisma-dbml-generator": "^0.10.0",
"prisma-erd-generator": "^1.7.0",
"sass": "^1.63.3",
"svelte": "^3.59.1",
"svelte-check": "^2.10.3",
"svelte-fa": "^3.0.4",
"svelte-preprocess": "^4.10.7",
"svelte-time": "^0.7.2",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.3",
"typescript": "^4.9.5",
"vite": "^4.3.9"
},
"dependencies": {
"@prisma/client": "^4.15.0",
"tslog": "^4.8.2"
}
}