forked from Authress-Engineering/aws-s3-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "s3-explorer",
"version": "0.0.0",
"description": "AWS S3 Object explorer in your browser - completely headless, runs without a server",
"author": "Rhosys Developers <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Rhosys/s3-explorer.git"
},
"license": "Apache-2.0",
"keywords": [
"AWS",
"S3",
"S3 Explorer",
"S3 Object Explorer"
],
"main": "src/openapi-explorer.js",
"files": [
"src",
"dist"
],
"mode": "production",
"dependencies": {
"@suadelabs/vue3-multiselect": "^1.0.2",
"aws-sdk": "^2.981.0",
"dragster": "^0.1.3",
"dropzone": "^5.9.2",
"file-saver": "^2.0.5",
"luxon": "^2.0.2",
"vue": "^3.0.5",
"vue-multiselect": "^2.1.6",
"vue3-clipboard": "^1.0.0"
},
"scripts": {
"build": "vite build",
"start": "vite --port=8080",
"serve": "vite preview --port=8080",
"lint": "eslint --ext .js src make.js",
"setup": "node make.js setup",
"after_build": "node make.js after_build",
"test": "babel src -d lib && mocha -r esm tests/*.test.js"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.0.5",
"aws-architect": "^6.6.4",
"axios": "^0.21.1",
"ci-build-tools": "^1.0.13",
"commander": "^4.0.1",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-cimpress-atsquad": "1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.17.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"sass": "^1.38.2",
"vite": "^2.4.4"
},
"engines": {
"node": ">=12"
}
}