-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
96 lines (96 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "leapfrogai-ui",
"version": "0.0.1",
"engines": {
"node": ">=18.1.0"
},
"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": "concurrently 'prettier --check .' 'eslint .'",
"format": "prettier --write . && eslint . --fix",
"test:integration": "playwright test",
"test:integration:ui": "playwright test --ui",
"test:integration:ci": "playwright test tests/global.setup.ts tests/api.test.ts tests/api-keys.test.ts",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:reset": "supabase db reset",
"supbase:migrate": "supabase migration up"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/adapter-node": "^5.2.2",
"@sveltejs/kit": "^2.6.2",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/dompurify": "^3.0.5",
"@types/eslint": "^8.56.10",
"@types/lodash": "^4.17.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"autoprefixer": "^10.4.20",
"docx": "^8.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.42.0",
"flowbite": "^2.5.1",
"flowbite-svelte": "^0.46.16",
"flowbite-svelte-icons": "^1.6.1",
"jsdom": "^24.1.0",
"lodash": "^4.17.21",
"msw": "^2.4.5",
"otpauth": "^9.3.2",
"pdf-lib": "^1.17.1",
"playwright": "^1.47.0",
"postcss": "^8.4.38",
"pptxgenjs": "^3.12.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "^1.78.0",
"svelte": "^4.2.19",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.10",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.4",
"vitest": "^2.0.5",
"xlsx": "^0.18.5"
},
"type": "module",
"dependencies": {
"@ai-sdk/openai": "^0.0.61",
"@ai-sdk/svelte": "^0.0.49",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"ai": "^3.4.0",
"carbon-pictograms-svelte": "^12.11.0",
"concurrently": "^8.2.2",
"dompurify": "^3.1.6",
"fuse.js": "^7.0.0",
"highlight.js": "^11.10.0",
"isomorphic-dompurify": "^2.15.0",
"libreoffice-convert": "^1.6.0",
"lit": "^3.2.0",
"markdown-it": "^14.1.0",
"mupdf": "^0.3.0",
"openai": "^4.58.2",
"sveltekit-superforms": "^2.17.0",
"uuid": "^10.0.0",
"yup": "^1.4.0"
}
}