-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.64 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
97
98
99
100
101
102
103
104
105
106
{
"name": "chat-app",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prod": "ORIGIN=http://localhost:3000 tsx prodServer.ts",
"seed": "tsx db/postgres/seed/execute.seed.ts",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "vitest run",
"test:integration": "npm run build && PW_TEST_CONNECT_WS_ENDPOINT=ws://localhost:5000/ npx playwright test",
"playwright": "npm run test:integration --",
"playwright:ui": "npm run build && PW_TEST_CONNECT_WS_ENDPOINT=ws://localhost:5000/ npx playwright test --ui-port=6007",
"playwright:only": "PW_TEST_CONNECT_WS_ENDPOINT=ws://localhost:5000/ npx playwright test",
"playwright:only:ui": "PW_TEST_CONNECT_WS_ENDPOINT=ws://localhost:5000/ npx playwright test --ui-port=6007",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "tsx utils/lint-script.ts",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"migrator": "tsx db/postgres/tools/migrator-cli.ts",
"node-server": "node --env-file=.env --import=tsx prodServer.ts",
"clear-redis": "tsx db/redis/clear-redis.ts"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@faker-js/faker": "8.4.1",
"@playwright/test": "1.49.0",
"@storybook/addon-a11y": "8.5.3",
"@storybook/addon-actions": "8.5.3",
"@storybook/addon-essentials": "8.5.3",
"@storybook/addon-interactions": "8.5.3",
"@storybook/addon-links": "8.5.3",
"@storybook/addon-svelte-csf": "4.2.0",
"@storybook/blocks": "8.5.3",
"@storybook/svelte": "8.5.3",
"@storybook/sveltekit": "8.5.3",
"@sveltejs/adapter-auto": "3.2.0",
"@sveltejs/adapter-node": "5.2.1",
"@sveltejs/kit": "2.17.2",
"@sveltejs/vite-plugin-svelte": "3.1.0",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/svelte": "5.1.0",
"@types/node": "20.12.7",
"@types/pg": "8.11.5",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "8.11.0",
"autoprefixer": "10.4.19",
"chalk": "5.3.0",
"eslint": "9.20.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-svelte": "2.46.1",
"globals": "15.15.0",
"happy-dom": "17.1.0",
"kysely-codegen": "0.15.0",
"pm2": "5.4.2",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.3",
"prettier-plugin-tailwindcss": "0.5.14",
"sass": "1.75.0",
"storybook": "8.5.3",
"svelte": "4.2.19",
"svelte-check": "3.7.0",
"sveltekit-superforms": "2.23.1",
"tailwindcss": "3.4.3",
"tslib": "2.6.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"uuid": "9.0.1",
"vite": "5.4.14",
"vitest": "2.1.2",
"winston": "3.17.0",
"zx": "8.3.2"
},
"dependencies": {
"@iconify/icons-eos-icons": "1.2.6",
"@iconify/icons-humbleicons": "1.2.4",
"@iconify/icons-iconoir": "1.2.30",
"@iconify/svelte": "3.1.4",
"@storybook/test": "8.5.3",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"dotenv": "16.4.5",
"express": "4.21.2",
"kysely": "0.27.3",
"minio": "8.0.4",
"pg": "8.11.5",
"redis": "4.6.13",
"rxjs": "7.8.1",
"sharp": "0.33.5",
"socket.io": "4.8.0",
"socket.io-client": "4.8.0",
"zod": "3.24.2",
"zod-to-json-schema": "3.23.3"
}
}