forked from keerthivasansa/animos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "animos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "npx prisma generate && 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 --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"prepare": "husky install"
},
"devDependencies": {
"@popperjs/core": "^2.11.6",
"@sveltejs/adapter-vercel": "^2.0.1",
"@sveltejs/kit": "^1.0.0-next.589",
"@types/bcrypt": "^5.0.0",
"@types/hls-parser": "^0.8.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/mime-types": "^2.1.1",
"@types/svelte-range-slider-pips": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"hls-parser": "^0.10.6",
"lint-staged": "^13.2.1",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.8.0",
"prisma": "^4.8.1",
"svelte": "^3.44.0",
"svelte-check": "^2.7.1",
"svelte-paginate": "^0.1.0",
"svelte-preprocess": "^4.10.7",
"svelte-range-slider-pips": "^2.1.0",
"tailwindcss": "^3.1.5",
"tslib": "^2.3.1",
"typescript": "^4.9.5",
"vite": "^4.0.0",
"husky": "^8.0.0"
},
"type": "module",
"dependencies": {
"@prisma/client": "^4.8.1",
"@supabase/supabase-js": "^2.7.1",
"@trpc/client": "^10.9.1",
"aws-sdk": "^2.1353.0",
"axios": "^1.3.2",
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"hls.js": "^1.3.3",
"https-proxy-agent": "^5.0.1",
"jsonwebtoken": "^9.0.0",
"plyr": "^3.7.2",
"redaxios": "^0.5.1",
"superjson": "^1.12.2",
"svelte-icons": "^2.1.0",
"svelte-toasts": "^1.1.2",
"swiper": "^8.4.5",
"trpc-sveltekit": "^3.2.9",
"zod": "^3.20.6"
},
"lint-staged": {
"*.ts": "npx tsc --noEmit",
"*.{js,jsx,ts,tsx}": "npx eslint",
"*.{js,jsx,ts,tsx,html,css}": "npx prettier --check"
}
}