-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
97 lines (97 loc) · 2.92 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
88
89
90
91
92
93
94
95
96
97
{
"name": "atcoder-novisteps",
"version": "0.0.1",
"description": "",
"private": true,
"bugs": "https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps/issues",
"homepage": "",
"license": "MIT",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm format",
"pnpm lint"
]
},
"scripts": {
"dev": "vite dev",
"build": "prisma generate && vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"postinstall": "prisma generate",
"db:seed": "pnpm dlx vite-node ./prisma/seed.ts",
"db:studio": "pnpm dlx prisma studio",
"prepare": "husky",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@playwright/test": "1.49.1",
"@quramy/prisma-fabbrica": "2.2.2",
"@sveltejs/adapter-auto": "4.0.0",
"@sveltejs/adapter-vercel": "5.5.3",
"@sveltejs/kit": "2.15.3",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tailwindcss/forms": "0.5.10",
"@testing-library/jest-dom": "6.6.3",
"@types/gtag.js": "0.0.20",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"@vitest/coverage-v8": "3.0.0-beta.3",
"@vitest/ui": "3.0.0-beta.3",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-svelte": "2.46.1",
"flowbite-svelte": "0.47.4",
"flowbite-svelte-icons": "2.0.2",
"globals": "15.14.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lint-staged": "15.3.0",
"nock": "13.5.6",
"prettier": "3.4.2",
"prettier-plugin-svelte": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.10",
"prisma": "5.22.0",
"stwui": "0.21.2-next",
"super-sitemap": "1.0.3",
"svelte": "5.19.0",
"svelte-check": "4.1.4",
"svelte-meta-tags": "4.1.0",
"sveltekit-superforms": "2.22.1",
"tslib": "2.8.1",
"typescript": "5.6.3",
"vite": "6.0.7",
"vitest": "3.0.0-beta.3",
"zod": "3.24.1"
},
"type": "module",
"dependencies": {
"@lucia-auth/adapter-prisma": "3.0.2",
"@mermaid-js/mermaid-cli": "10.9.1",
"@popperjs/core": "2.11.8",
"@prisma/client": "5.22.0",
"@testing-library/svelte": "5.2.6",
"@types/jest": "29.5.14",
"@types/node": "22.10.7",
"autoprefixer": "10.4.20",
"debug": "4.4.0",
"flowbite": "2.5.2",
"lucia": "2.7.7",
"playwright": "1.49.1",
"pnpm": "9.15.4",
"prisma-erd-generator": "1.11.2",
"svelte-eslint-parser": "0.43.0",
"tailwind-merge": "2.6.0",
"tailwindcss": "3.4.17",
"vercel": "39.3.0",
"xss": "1.0.15"
},
"packageManager": "[email protected]"
}