-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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": "s3-browser",
"version": "1.0.0",
"description": "Simple explorer for Amazon S3 buckets",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"serve": "serve -s dist/",
"format:check": "prettier --check --ignore-unknown '**/*'",
"format": "prettier --write --ignore-unknown '**/*'",
"lint": "eslint '**/*.{js,jsx}'",
"lint:fix": "npm run lint -- --fix",
"test": "jest --silent --passWithNoTests",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlinhart/s3-browser.git"
},
"author": {
"name": "Tomáš Linhart",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/eslint-parser": "7.26.8",
"@babel/plugin-transform-runtime": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@eslint/compat": "1.2.6",
"@eslint/js": "9.16.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"aws-sdk-client-mock": "4.1.0",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"css-loader": "7.1.2",
"dotenv": "16.4.7",
"eslint": "9.16.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-testing-library": "7.0.0",
"globals": "15.13.0",
"html-webpack-inline-icon-plugin": "1.1.0",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"react-dev-utils": "12.0.1",
"serve": "14.2.4",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.11",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"webpack-merge": "6.0.1"
},
"dependencies": {
"@aws-sdk/client-s3": "3.722.0",
"@chakra-ui/react": "2.10.6",
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@grafana/faro-web-sdk": "1.12.3",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"framer-motion": "11.13.1",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.4.0",
"react-router-dom": "6.28.1"
}
}