-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.24 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.24 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
{
"name": "clash-armies",
"version": "0.7.1",
"private": true,
"type": "module",
"scripts": {
"start:before": "docker compose up -d",
"start": "npm run start:before && vite dev",
"start:network": "npm run start:before && vite dev --host",
"start:https": "DEV_HTTPS=1 npm run start:network",
"production": "vite preview",
"build": "vite build",
"test:before": "docker compose --env-file=.env.test --file=compose.test.yaml down -v && docker compose --env-file=.env.test --file=compose.test.yaml up -d",
"test:coverage": "npm run test:before && vitest run --coverage",
"test:ui": "npm run test:before && vitest --ui --coverage.enabled=true",
"test": "npm run test:before && vitest run",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json src"
},
"engines": {
"node": ">=24.11.0"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/kit": "^2.48.4",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/chai": "^5.0.1",
"@types/chai-subset": "^1.3.5",
"@types/eslint": "9.6.1",
"@types/cookie-signature": "1.1.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.1",
"chai": "^5.1.2",
"chai-subset": "^1.6.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^3.13.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.4.0",
"@vitejs/plugin-basic-ssl": "2.0.0",
"semver": "^7.7.1",
"svelte": "^5.43.4",
"svelte-check": "^4.3.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.4.1",
"vitest": "^3.1.1"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@ninjalib/sql": "^0.5.1",
"@ninjalib/util": "0.5.4",
"@tiptap/core": "^3.10.4",
"@tiptap/extension-character-count": "^3.10.4",
"@tiptap/extension-link": "^3.10.4",
"@tiptap/extension-list-keymap": "^3.10.4",
"@tiptap/extension-placeholder": "^3.10.4",
"@tiptap/extension-text-align": "^3.10.4",
"@tiptap/html": "^3.10.4",
"@tiptap/pm": "^3.10.4",
"@tiptap/starter-kit": "^3.10.4",
"zeed-dom": "0.17.7",
"arctic": "1.5.0",
"cron": "3.1.7",
"date-fns": "3.6.0",
"lucia": "3.1.1",
"uuid": "^11.1.0",
"cookie-signature": "1.2.2",
"zod": "3.22.3"
}
}