-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.98 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
{
"name": "mage-website",
"version": "0.3.07",
"license": "GPL-3.0",
"private": true,
"type": "module",
"scripts": {
"dev:only": "vite dev --host",
"build:only": "vite build",
"tailwind:watch": "cross-env TAILWIND_MODE=watch cross-env NODE_ENV=development postcss src/app.css -o src/lib/assets/styles/tailwind-output.css -w",
"tailwind:build": "cross-env TAILWIND_MODE=build cross-env NODE_ENV=production postcss src/app.css -o src/lib/assets/styles/tailwind-output.css",
"dev": "concurrently \"npm run dev:only\" \"npm run tailwind:watch\"",
"build": "npm run tailwind:build && npm run build:only",
"preview": "vite preview",
"test": "npx playwright test",
"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": {
"@playwright/test": "1.50.1",
"@sveltejs/adapter-cloudflare": "^5.0.0",
"@sveltejs/kit": "^2.5.18",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.13",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"postcss": "^8.4.21",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"svelte": "^5.0.3",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^6.0.0",
"swiper": "^11.0.1",
"tailwind-scrollbar": "^4.0.0",
"tailwindcss": "^4.0.1",
"tslib": "^2.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@event-calendar/core": "^3.0.0",
"@event-calendar/time-grid": "^3.0.0",
"@jill64/sentry-sveltekit-cloudflare": "^2.0.1",
"@neodrag/svelte": "^2.0.3",
"daisyui": "^4.7.2",
"emoji-picker-element": "^1.18.1",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"playwright-e2e-coverage-report": "^1.0.28",
"svelte-stripe": "^1.1.4",
"svelte-tags-input": "^6.0.0",
"theme-change": "^2.5.0"
}
}