-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "example-bookstall",
"version": "0.0.0",
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"private": true,
"scripts": {
"dev": "vite --port 3002 --clearScreen false",
"build": "vite build",
"preview": "vite preview --port 3002",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@picocss/pico": "^1.5.12",
"@prisma/client": "^5.15.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.15",
"@types/debounce": "^1.2.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.2",
"sass": "^1.77.5",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"svelte-preprocess": "^6.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^4.5.2"
},
"type": "module",
"dependencies": {
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"dayjs": "^1.11.11",
"debounce": "^2.1.0",
"hash-wasm": "^4.11.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.15.0",
"trpc-transformer": "^3.2.2",
"zod": "^3.23.8"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
}
}