-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "techy-cat",
"version": "0.2.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",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "vitest",
"generate": "export $(grep -v '^#' .env | xargs) && openapi-typescript \"$PUBLIC_SUPABASE_URL/rest/v1/?apikey=$PUBLIC_SUPABASE_ANON_KEY\" --output src/lib/supabase.d.ts"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@poppanator/sveltekit-svg": "^1.0.0",
"@supabase/supabase-js": "^1.35.7",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@types/dotenv-flow": "^3.2.0",
"@types/seedrandom": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.12",
"dotenv-flow": "^3.2.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"jsdom": "^20.0.1",
"jwt-decode": "^3.1.2",
"lottie-web": "^5.9.6",
"motion": "^10.14.2",
"openapi-typescript": "^5.4.1",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"seedrandom": "^3.0.5",
"svelte": "^3.51.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.8",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"unique-names-generator": "^4.7.1",
"vitest": "^0.24.1"
},
"type": "module",
"engines": {
"node": "16.x"
},
"volta": {
"node": "16.17.1"
}
}