-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.96 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
{
"name": "writeflowy",
"version": "0.0.1",
"license": "AGPL-3.0 license",
"scripts": {
"kill": "bunx cross-port-killer 5173",
"vite:dev": "vite dev --host 0.0.0.0",
"dev": "MIMALLOC_SHOW_STATS=1 bun --bun run vite:dev",
"i18n": "bun i18n.config.ts",
"es": "vite build",
"prod": "bun run es && cp -rf prisma build/prisma && bun inject-dirname.ts && cd build && bun build index.js --target bun --outfile index.js && rm -rf server && rm -rf package.json",
"preview": "bun run es && vite preview",
"e2e": "playwright test --config playwright.config.ts",
"e2e:ui": "playwright test --config playwright.config.ts --ui",
"prisma:init": "prisma generate",
"test:all": "bun test && bun run e2e",
"test:100": "bun test --rerun-each 100",
"prisma": "prisma",
"migrate:dev": "prisma migrate dev",
"migrate:reset": "prisma migrate reset",
"migrate:deploy": "prisma migrate deploy",
"check": "svelte-kit sync && svelte-check --fail-on-warnings --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"prettier": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"prepare": "husky install",
"precommit": "bun run format && git add . && bun run prettier && bun run lint && bun run check && bun test:all"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"@tailwindcss/forms": "^0.5.6",
"@types/cookie": "^0.5.1",
"@types/howler": "^2.2.9",
"@types/nodemailer": "^6.4.9",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"autoprefixer": "^10.4.15",
"bun-types": "^1.0.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"husky": "^8.0.3",
"postcss": "^8.4.29",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
"svelte-adapter-bun": "^0.5.0",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.3",
"tslib": "^2.4.1",
"typescript": "^5.2.0",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@google-cloud/text-to-speech": "^5.0.1",
"@minht11/solid-virtual-container": "^0.2.1",
"@prisma/client": "5.2.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/svelte-virtual-list": "^3.0.1",
"@trpc/client": "^10.38.1",
"@trpc/server": "^10.38.1",
"@types/node": "^20.6.3",
"@zerodevx/svelte-toast": "^0.9.5",
"aws-sdk": "^2.1458.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"google-auth-library": "^9.0.0",
"howler": "^2.2.3",
"nightwind": "^1.1.13",
"nodemailer": "^6.9.5",
"openai": "^4.6.0",
"prisma": "^5.2.0",
"redis": "^4.6.8",
"stripe": "^13.6.0",
"superjson": "^1.13.1",
"tailwind-merge": "^1.14.0",
"trpc-sveltekit": "^3.5.20",
"zod": "^3.22.2"
}
}