-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "sveltekit-supabase-stripe",
"version": "0.0.1",
"private": true,
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"scripts": {
"stripe:start": "docker compose -f stripe/docker-compose.yml up -d",
"stripe:stop": "docker compose -f stripe/docker-compose.yml down",
"dev:start": "pnpm supabase:start && pnpm stripe:start",
"dev:stop": "pnpm supabase:stop && pnpm stripe:stop",
"dev": "vite dev --port 3000",
"build": "svelte-kit sync && svelte-package",
"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 ."
},
"dependencies": {
"@stripe/stripe-js": "^1.36.0",
"@supabase/supabase-js": "^1.35.6",
"stripe": "^10.10.0",
"sveltekit-supabase-auth": "workspace:*"
},
"devDependencies": {
"@sveltejs/adapter-auto": "1.0.0-next.76",
"@sveltejs/kit": "1.0.0-next.487",
"@sveltejs/package": "1.0.0-next.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.11",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.16",
"postcss-load-config": "^4.0.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.8",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"vite": "^3.1.3"
},
"type": "module"
}