-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
{
"name": "notes",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "prisma generate && prisma migrate deploy && vite build",
"build:tsc": "tsc --noEmit",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run && npm run check",
"test:unit": "vitest",
"test:playwright": "playwright test",
"lint": "prettier . --check . && eslint .",
"lint-staged": "lint-staged",
"format": "prettier . --write .",
"prepare": "husky",
"postinstall": "prisma generate"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@fontsource/fira-mono": "^5.0.8",
"@melt-ui/pp": "^0.3.2",
"@melt-ui/svelte": "^0.86.0",
"@neoconfetti/svelte": "^2.0.0",
"@playwright/test": "^1.37.1",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-vercel": "^5.4.5",
"@sveltejs/kit": "^2.8.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/typography": "^0.5.15",
"@types/cookie": "^1.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.197",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.11.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.28",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.0",
"prisma": "^6.0.0",
"svelte": "^5.16.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"vitest": "^2.1.2"
},
"type": "module",
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.1",
"@aws-sdk/client-ses": "^3.540.0",
"@prisma/client": "^6.0.0",
"@tiptap/core": "^2.11.2",
"@tiptap/pm": "^2.11.2",
"@tiptap/starter-kit": "^2.11.2",
"fp-ts": "^2.16.5",
"jsonwebtoken": "^9.0.1",
"jwks-rsa": "^3.0.1",
"lodash": "^4.17.21",
"nanoid": "^5.0.1",
"prisma-field-encryption": "^1.5.0",
"zod": "^3.22.4"
},
"lint-staged": {
"*": [
"prettier . --write",
"eslint ."
]
}
}