-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "planning-poker",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"package": "vite package",
"preview": "vite preview --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@skeletonlabs/skeleton": "^0.124.2",
"@supabase/supabase-js": "^2.8.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.7.2",
"@tailwindcss/forms": "^0.5.3",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.14",
"postcss-nested": "^6.0.0",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.2.7",
"rxjs": "^7.5.6",
"svelte": "^3.55.0",
"svelte-awesome": "^3.0.1",
"svelte-check": "^3.0.3",
"svelte-loader": "^3.1.4",
"svelte-preprocess": "^5.0.1",
"tailwindcss": "^3.1.4",
"typescript": "^5.0.4",
"uid": "^2.0.1",
"vite": "^4.1.2",
"zod": "^3.21.4"
}
}