-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 3.19 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
{
"name": "climbing-notebook",
"version": "0.0.1",
"scripts": {
"dev": "vite dev --host",
"build": "vite build --mode development",
"preview": "vite preview",
"sync": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest run",
"prettier-check": "prettier --plugin-search-dir . --check .",
"eslint-check": "eslint . --ext .ts,.js",
"typescript-check": "tsc --noEmit",
"svelte-check": "npx svelte-check --tsconfig ./tsconfig.json",
"lint": "npm run prettier-check && npm run eslint-check && npm run typescript-check && npm run svelte-check",
"format": "prettier --plugin-search-dir . --write .",
"prisma-generate": "prisma generate",
"ts-script-runner": "npx ts-node --esm"
},
"devDependencies": {
"@fontsource/eb-garamond": "^5.1.1",
"@playwright/test": "^1.28.1",
"@skeletonlabs/skeleton": "^1.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-node": "^2.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/cal-heatmap": "^3.5.39",
"@types/dompurify": "^3.0.5",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.35.1",
"jest-mock-extended": "^3.0.5",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"prisma": "^5.3.0",
"sass": "^1.70.0",
"svelte": "^4.0.0",
"svelte-check": "^3.6.3",
"svelte-language-server": "^0.15.17",
"svelte-preprocess": "^5.0.4",
"sveltekit-flash-message": "^2.2.0",
"sveltekit-superforms": "^2.0.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.6.0",
"zod": "^3.21.4"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "3.378.0",
"@aws-sdk/client-ses": "3.378.0",
"@aws-sdk/s3-request-presigner": "3.378.0",
"@event-calendar/core": "^0.18.1",
"@event-calendar/day-grid": "^0.18.1",
"@event-calendar/interaction": "^0.18.1",
"@event-calendar/time-grid": "^0.18.1",
"@floating-ui/dom": "^1.2.7",
"@fontsource/fira-mono": "^4.5.10",
"@fontsource/pt-sans": "^4.5.11",
"@iconify/svelte": "^3.1.3",
"@lucia-auth/adapter-prisma": "^3.0.1",
"@prisma/client": "^5.3.0",
"@sveltestack/svelte-query": "^1.6.0",
"@tailwindcss/forms": "^0.5.3",
"@types/cookie": "^0.5.1",
"@types/luxon": "^3.3.0",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.13",
"cal-heatmap": "^4.2.4",
"chart.js": "^4.3.0",
"chartjs-adapter-dayjs-4": "^1.0.4",
"cuid": "^3.0.0",
"dayjs": "^1.11.7",
"dompurify": "^3.1.7",
"json-2-csv": "^4.0.0",
"lucia": "^2.3.0",
"marked": "^14.1.3",
"mathjs": "^11.8.0",
"nprogress": "^0.2.0",
"sharp": "^0.32.1",
"svelte-breadcrumbs": "^1.2.7",
"svelte-chartjs": "^3.1.5",
"svelte-frappe-charts": "^1.10.0",
"uuid": "^9.0.0"
}
}