-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.41 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
70
71
72
73
74
75
76
{
"name": "wytui",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:integration": "playwright test",
"test:integration:ui": "playwright test --ui",
"test:all": "npm run test && npm run test:integration",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"ext:build": "npx --yes web-ext build --source-dir=extension --artifacts-dir=extension-artifacts --overwrite-dest",
"ext:lint": "npx --yes web-ext lint --source-dir=extension",
"ext:publish:firefox": "npx --yes web-ext sign --source-dir=extension --artifacts-dir=extension-artifacts --channel=listed --api-key=\"$AMO_JWT_ISSUER\" --api-secret=\"$AMO_JWT_SECRET\""
},
"dependencies": {
"@auth/core": "^0.41.1",
"@auth/prisma-adapter": "^2.11.1",
"@auth/sveltekit": "^1.11.1",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"archiver": "^7.0.1",
"bcrypt": "^5.1.1",
"js-yaml": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"ldapts": "^8.1.8",
"node-cron": "^4.2.1",
"openid-client": "^6.8.4",
"p-limit": "^6.1.0",
"pg": "^8.13.1",
"swagger-ui-dist": "^5.32.6",
"undici": "^7.27.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.58.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/archiver": "^6.0.2",
"@types/bcrypt": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"@types/swagger-ui-dist": "^3.30.6",
"@vitest/ui": "^4.1.8",
"happy-dom": "^20.9.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prisma": "^7.4.2",
"svelte": "^5.55.4",
"svelte-check": "^4.4.6",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^4.1.8"
}
}