-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.38 KB
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": "fullstack-learn",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "svelte-kit sync && husky install",
"dev": "npm-run-all --parallel vite typesafe-i18n",
"vite": "vite dev --open",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "eslint --ext .js,.cjs,.ts,.svelte .",
"typecheck": "tsc --noEmit",
"format": "prettier --plugin-search-dir . --check .",
"lint:fix": "eslint --ext .js,.cjs,.ts,.svelte . --fix",
"format:fix": "prettier --plugin-search-dir . --write .",
"prisma-migrate": "npx prisma migrate dev --name init",
"typesafe-i18n": "typesafe-i18n"
},
"prisma": {
"seed": "tsx ./prisma/seeds/index.ts"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@skeletonlabs/skeleton": "^1.1.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@tailwindcss/forms": "^0.5.3",
"@types/luxon": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-no-duplicates-prefix-resolved-path": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte": "^2.26.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.3.1",
"tslib": "^2.4.1",
"tsx": "^3.12.6",
"typesafe-i18n": "^5.24.3",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.25.3",
"zod": "^3.21.4"
},
"type": "module",
"dependencies": {
"@auth/core": "^0.4.0",
"@auth/sveltekit": "^0.2.1",
"@floating-ui/dom": "^1.2.6",
"@googleapis/youtube": "^9.0.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"luxon": "^3.3.0",
"redis": "^4.6.6"
}
}