forked from ocluf/justship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "justship-custom",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"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 .",
"test:integration": "playwright test",
"test:unit": "vitest",
"generate": "drizzle-kit generate",
"migrate": "tsx ./migrate.ts",
"migrate:prod": "tsx ./migrate.ts --prod"
},
"devDependencies": {
"@css-inline/css-inline": "^0.14.1",
"@playwright/test": "^1.45.0",
"@prettier/plugin-pug": "^3.0.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/better-sqlite3": "^7.6.10",
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.7",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.6.0",
"lucide-svelte": "^0.397.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"pug": "^3.0.3",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^6.0.1",
"sveltekit-superforms": "2.15.2",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.4.4",
"vitest": "^1.6.0",
"zod": "^3.23.8"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.18",
"@fontsource-variable/lexend": "^5.0.20",
"@internationalized/date": "^3.5.4",
"@libsql/client": "^0.7.0",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"arctic": "^1.9.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"emailjs": "^4.0.3",
"lucia": "^3.2.0",
"oslo": "^1.2.0",
"posthog-js": "^1.141.4",
"postmark": "^4.0.4",
"stripe": "^16.0.0"
},
"type": "module"
}