-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.98 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
{
"name": "playdate",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=18"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"nodebuild": "NODE_MODE_ADAPTER=1 vite build",
"preview": "vite preview",
"test": "rm -f screenshot.png && playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"reset": "prisma migrate reset && yarn dev",
"postinstall": "prisma migrate deploy",
"build:prev": "vite build && vite preview",
"seed": "prisma db seed"
},
"devDependencies": {
"@fontsource/fira-mono": "^5.0.2",
"@neoconfetti/svelte": "^1.0.0",
"@playwright/test": "^1.36.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-node": "^1.2.4",
"@sveltejs/adapter-vercel": "2",
"@sveltejs/kit": "^1.20.0",
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/luxon": "^3.3.1",
"@types/marked": "^5.0.0",
"@types/node-cron": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vercel/postgres": "^0.3.0",
"autoprefixer": "^10.4.14",
"dotenv": "^16.1.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"intl-tel-input": "^18.1.6",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prisma": "^5.9.1",
"svelte": "^4.2.10",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.2",
"tsx": "^4.7.1",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vitest": "^0.31.3"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"marked": "^5.1.0",
"node-cron": "^3.0.2",
"sanitize": "^2.1.2",
"twilio": "^4.11.1"
}
}