-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.65 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
{
"name": "taco",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"postinstall": "node initialize.js",
"dev": "vite dev",
"build": "vite build",
"preview": "node server.js",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "dotenv -e .env.test -- prisma migrate deploy && npm run test:integration && npm run test:unit",
"test:integration": "dotenv -e .env.test -- playwright test",
"test:unit": "vitest",
"seed": "prisma db seed",
"data-migration:encrypt-chats": "tsx ./prisma/migrations/20240826081237_add_encrypted_column_to_chat/data-migration.ts"
},
"dependencies": {
"@babeard/svelte-heroicons": "^2.0.0-rc.0",
"@faker-js/faker": "^8.4.0",
"@magidoc/plugin-svelte-marked": "^4.1.2",
"@playwright/test": "^1.41.2",
"@prisma/client": "^5.11.0",
"@rgossiaux/svelte-headlessui": "^2.0.0",
"@sentry/sveltekit": "^7.73.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.30.4",
"@tailwindcss/forms": "^0.5.8",
"@tailwindcss/typography": "^0.5.9",
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/marked": "^6.0.0",
"@types/mjml": "^4.7.2",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.4.19",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"crypto-js": "^4.1.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte": "^2.26.0",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"highlight.js": "^11.10.0",
"marked": "^10.0.0",
"mjml": "^4.14.1",
"openai": "^4.25.0",
"postcss": "^8.4.24",
"postmark": "^4.0.2",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.8.1",
"prisma": "^5.11.0",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"sse.js": "^0.6.1",
"svelte": "^3.54.0",
"svelte-autosize": "^1.1.0",
"svelte-check": "^3.0.1",
"tailwindcss": "^3.3.2",
"tiktoken": "^1.0.10",
"tslib": "^2.4.1",
"tsx": "^4.7.0",
"typescript": "^5.4.5",
"vite": "^4.5.2",
"vitest": "^0.32.2",
"zod": "^3.21.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}