-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "theriver",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "prisma generate && vite build",
"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",
"lint": "prettier --check . && eslint .",
"lintall": "eslint --ext .js,.cjs,.ts,.svelte .",
"lintall:fix": "eslint --ext .js,.cjs,.ts,.svelte . --fix",
"format": "prettier --write .",
"db:reset": "npx prisma migrate reset",
"db:restart": "npx prisma migrate dev --name init && npx prisma db seed",
"git-push:sync": "git push && git push [email protected]:cunnellp5/TheRiver.git main",
"postinstall": "prisma generate"
},
"devDependencies": {
"@event-calendar/core": "^3.0.1",
"@event-calendar/day-grid": "^3.0.1",
"@event-calendar/interaction": "^3.0.1",
"@event-calendar/list": "^3.0.1",
"@event-calendar/time-grid": "^3.0.1",
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/adapter-vercel": "^5.4.3",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^8.56.9",
"@types/node": "^22.1.0",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-no-duplicates-prefix-resolved-path": "^2.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svelte": "^2.45.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.6.2",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"vitest": "^1.5.0"
},
"type": "module",
"prisma": {
"seed": "npx vite-node prisma/seed.ts"
},
"dependencies": {
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@prisma/client": "^5.12.1",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"calendarize": "^1.1.1",
"cloudinary": "^2.2.0",
"lucide-svelte": "^0.368.0",
"nodemailer": "^6.9.13",
"open-props": "^1.7.2",
"oslo": "^1.2.0",
"prisma": "^5.12.1",
"quill": "^2.0.2",
"rate-limiter-flexible": "^5.0.3",
"valibot": "^0.36.0"
}
}