-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "s3-file-browser",
"version": "1.0.0",
"description": "A simple implementation of an AWS S3 bucker file explorer.",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npm run dev",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix --quiet",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atanasov-deyan/S3-file-browser.git"
},
"keywords": [],
"author": "Deyan Atanasov",
"license": "ISC",
"bugs": {
"url": "https://github.com/atanasov-deyan/S3-file-browser/issues"
},
"homepage": "https://github.com/atanasov-deyan/S3-file-browser#readme",
"devDependencies": {
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"@vitejs/plugin-react": "4.2.1",
"eslint": "8.56.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"happy-dom": "16.3.0",
"typescript": "5.3.3",
"vite": "5.4.11",
"vitest": "1.2.2"
},
"dependencies": {
"@reduxjs/toolkit": "2.2.0",
"aws-sdk": "2.1559.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "9.1.0",
"react-router-dom": "6.22.0"
}
}