-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.23 KB
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
{
"name": "api-manager-ii",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev --port 3003",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check .",
"test:e2e": "playwright test",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:unit": "vitest",
"test:unit:watch": "vitest --watch",
"test:unit:coverage": "vitest --coverage",
"test:oauth": "vitest test/unit/oauth test/integration/oauth-flow.test.ts",
"test:routes": "vitest test/unit/routes",
"test:integration": "vitest test/integration",
"test:all": "vitest --run test/",
"test:watch": "vitest --watch test/"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@skeletonlabs/skeleton": "^4.0.0",
"@skeletonlabs/skeleton-svelte": "^4.0.0",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.4",
"@types/markdown-it": "^14.1.2",
"@types/prismjs": "^1.26.5",
"autoprefixer": "^10.4.22",
"dotenv": "^17.2.1",
"jsdom": "^26.0.0",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "5.33.2",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"uuid": "^11.1.0",
"vite": "^6.2.6",
"vitest": "^3.0.0"
},
"dependencies": {
"@langchain/core": "^0.3.57",
"@lucide/svelte": "^0.513.0",
"arctic": "^3.7.0",
"bits-ui": "^2.8.10",
"ioredis": "^5.6.1",
"jwt-decode": "^4.0.0",
"langchain": "^0.3.27",
"markdown-it": "^14.1.0",
"prismjs": "^1.30.0",
"svelte-kit-connect-redis": "^0.1.0",
"svelte-kit-sessions": "^0.4.0"
}
}