-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.56 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
{
"name": "correlaid-org",
"version": "0.0.1",
"private": true,
"engines": {
"node": "^16.14 || >=18"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && node replace_urls.js",
"preview": "vite preview",
"format": "npx prettier -w .",
"format_check": "npx prettier --check .",
"quick_format": "npx pretty-quick --staged",
"lint": "npx eslint src/",
"precommit": "run-s quick_format lint",
"init_pre_commit": "husky install",
"test": "npx vitest run",
"e2e": "npx playwright test",
"serve-static": "npx serve ${BUILD_DIR:-.svelte-kit/cloudflare}",
"build-and-test": "run-s build e2e",
"remove-console-log": "npx jscodeshift ./ --extensions=svelte,js -t codeshift/remove-console.mjs -p --ignore-config=codeshift/.shiftignore"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^5.2.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.43.0",
"husky": "^8.0.3",
"jscodeshift": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"pretty-quick": "^4.0.0",
"vitest": "^0.30.1"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.726.0",
"@event-calendar/core": "^3.4.0",
"@event-calendar/day-grid": "^3.4.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-cloudflare": "^2.2.2",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/adapter-vercel": "^2.3.0",
"@sveltejs/kit": "^1.10.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"cheerio": "^1.0.0-rc.12",
"detect-element-overflow": "^1.4.2",
"dotenv": "^16.0.3",
"he": "^1.2.0",
"highlight.js": "^11.8.0",
"i18n": "^0.15.1",
"ical-generator": "^6.0.1",
"lodash": "^4.17.21",
"maplibre-gl": "^2.4.0",
"moment-timezone": "^0.5.45",
"postcss": "^8.4.31",
"proxyquire": "^2.1.3",
"serve": "^14.2.0",
"simply-reactive": "^4.1.0",
"svelte": "^4.2.19",
"svelte-carousel": "^1.0.25",
"svelte-highlight": "^7.2.1",
"svelte-markdown": "^0.4.1",
"svelte-select": "^5.6.1",
"sveltekit-search-params": "^3.0.0",
"tailwindcss": "^3.2.7",
"undici": "^5.28.4",
"uuid": "^9.0.1",
"vite": "^4.5.3",
"yup": "^0.32.11"
}
}