-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.09 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
{
"name": "library",
"version": "1.1.0",
"scripts": {
"dev": "vite dev",
"build": "run-s prisma:generate build:app",
"build:app": "vite build",
"prisma:import": "npx prisma-import -s \"prisma/schemas/*\" -o prisma/schema.prisma -f",
"prisma:generate": "npx prisma generate",
"prisma:seed": "npx prisma db seed",
"prisma:deploy": "npx prisma migrate deploy",
"start": "run-s prisma:deploy prisma:generate prisma:seed start:server",
"start:server": "node server.mjs",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@iconify/svelte": "^3.1.6",
"@skeletonlabs/skeleton": "^2.7.0",
"@skeletonlabs/tw-plugin": "^0.3.1",
"@sveltejs/adapter-node": "^3.0.0",
"@sveltejs/kit": "^2.3.2",
"@tailwindcss/forms": "^0.5.7",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.33",
"postcss-load-config": "^5.0.2",
"prisma": "^5.14.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.3",
"svelte-preprocess": "^5.1.3",
"sveltekit-superforms": "^2.16.0",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"type": "module",
"dependencies": {
"@ericblade/quagga2": "^1.8.4",
"@floating-ui/dom": "^1.5.4",
"@prisma/client": "^5.14.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fuse.js": "^7.0.0",
"nodemailer": "^6.9.8",
"npm-run-all": "^4.1.5",
"pretty-bytes": "^6.1.1",
"sharp": "^0.33.2",
"tsx": "^4.10.4",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"prisma": {
"seed": "tsx prisma/seeding/index.ts"
}
}