-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.84 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
{
"name": "sveltekit-s3-compatible-storage",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "SvelteKit S3 compatible storage: how you can upload files to your cloud storage provider from your Svelte app using presigned URLs.",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check",
"lint": "prettier --ignore-path .gitignore --check --plugin=prettier-plugin-svelte . && eslint --ignore-path .gitignore .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte .",
"format": "prettier --ignore-path .prettierignore --write --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.575.0",
"@aws-sdk/s3-request-presigner": "^3.575.0",
"@aws-sdk/signature-v4-crt": "^3.575.0",
"@aws-sdk/util-create-request": "^3.575.0",
"@aws-sdk/util-format-url": "^3.575.0",
"@commitlint/config-conventional": "^19.2.2",
"@fontsource/libre-franklin": "^5.0.18",
"@fontsource/rajdhani": "^5.0.13",
"@paralleldrive/cuid2": "^2.2.2",
"@sveltejs/kit": "2.5.8",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"commitlint": "^19.3.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.0",
"formidable": "^3.5.1",
"husky": "^9.0.11",
"postcss-html": "^1.7.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"stylelint": "^16.5.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"svelte": "^4.2.17",
"svelte-check": "^3.7.1",
"vite": "^5.2.11"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-s3-compatible-storage"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-s3-compatible-storage/issues"
},
"type": "module"
}