-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.82 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
{
"name": "nebulakit",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "svelte-kit sync",
"dev": "vite dev --host 0.0.0.0 --port 4277",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0 --port 4277",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"deploy": "npm run build && wrangler pages deploy .svelte-kit/cloudflare",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test && npm run test:e2e",
"validate:contrast": "node scripts/validate-theme-contrast.cjs",
"validate:all": "npm run check && npm run test && npm run validate:contrast",
"db:migrate": "wrangler d1 migrations apply nebulakit-db",
"db:migrate:local": "wrangler d1 migrations apply nebulakit-db --local",
"db:migrate:list": "wrangler d1 migrations list nebulakit-db"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@sveltejs/adapter-cloudflare": "^4.7.2",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/svelte": "^4.2.3",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"happy-dom": "^12.10.3",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.3",
"vitest": "^1.0.4",
"wrangler": "^3.78.0"
},
"dependencies": {
"@auth/core": "^0.35.0",
"@auth/sveltekit": "^1.5.0"
},
"type": "module"
}