-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
{
"name": "rodeo",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"postinstall": "npx prisma generate",
"preview": "vite preview",
"test": "playwright test",
"prepare": "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",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:unit:run": "vitest run"
},
"pre-commit": [
"check",
"lint",
"test:unit:run"
],
"prisma": {
"seed": "npx [email protected] prisma/seed.ts"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^1.0.0",
"@sveltejs/adapter-vercel": "^1.0.5",
"@sveltejs/kit": "^1.0.0",
"@types/crypto-js": "^4.1.1",
"@types/file-saver": "^2.0.5",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/qrcode": "^1.5.0",
"@types/stopword": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"prisma": "^5.10.1",
"sv-popup": "^0.5.3",
"svelte": "^3.54.0",
"svelte-check": "^3.5.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^5.2.2",
"vite": "^4.0.0",
"vitest": "^0.30.1",
"vitest-mock-extended": "^1.1.3"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@aws-sdk/s3-request-presigner": "^3.388.0",
"@json2csv/plainjs": "^7.0.1",
"@lucia-auth/adapter-prisma": "^3.0.1",
"@lucia-auth/oauth": "^3.0.0",
"@prisma/client": "^5.10.1",
"@sendgrid/mail": "^7.7.0",
"@trpc/client": "^10.7.0",
"@trpc/server": "^10.7.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"file-saver": "^2.0.5",
"fuzzysort": "^2.0.4",
"html5-qrcode": "^2.3.7",
"jszip": "^3.10.1",
"lucia": "^2.4.2",
"natural": "^6.10.4",
"nodemailer": "^6.9.1",
"qrcode": "^1.5.1",
"stopword": "^3.0.1",
"superjson": "^1.12.2",
"svelte-markdown": "^0.2.3",
"svelte-plotly.js": "^0.3.2",
"svelte-select": "^5.6.1",
"trpc-sveltekit": "^3.2.2",
"tsx": "^3.14.0",
"zod": "^3.20.2"
}
}