|
1 | 1 | { |
2 | | - "name": "s3-client", |
3 | | - "version": "0.1.0", |
4 | | - "private": true, |
5 | | - "dependencies": { |
6 | | - "react": "^16.8.1", |
7 | | - "react-dom": "^16.8.1", |
8 | | - "react-scripts": "2.1.3" |
9 | | - }, |
10 | | - "scripts": { |
11 | | - "start": "react-scripts start", |
12 | | - "build": "react-scripts build", |
13 | | - "test": "react-scripts test", |
14 | | - "eject": "react-scripts eject" |
15 | | - }, |
16 | | - "eslintConfig": { |
17 | | - "extends": "react-app" |
18 | | - }, |
19 | | - "browserslist": [ |
20 | | - ">0.2%", |
21 | | - "not dead", |
22 | | - "not ie <= 11", |
23 | | - "not op_mini all" |
24 | | - ] |
| 2 | + "name": "SimpleS3", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "A simple Amazon s3 browser", |
| 5 | + "author": "Alex Hermann <alex.hermann@pop-code.com>", |
| 6 | + "private": true, |
| 7 | + "dependencies": { |
| 8 | + "@babel/core": "^7.2.2", |
| 9 | + "@babel/plugin-proposal-decorators": "^7.3.0", |
| 10 | + "@material-ui/core": "^3.9.2", |
| 11 | + "@material-ui/icons": "^3.0.2", |
| 12 | + "@types/app-root-path": "^1.2.4", |
| 13 | + "@types/file-saver": "^2.0.0", |
| 14 | + "@types/hoist-non-react-statics": "^3.0.1", |
| 15 | + "@types/jest": "^24.0.0", |
| 16 | + "@types/joi": "^14.3.1", |
| 17 | + "@types/lodash": "^4.14.120", |
| 18 | + "@types/node": "^10.12.24", |
| 19 | + "@types/pretty-bytes": "^5.1.0", |
| 20 | + "@types/react": "^16.8.2", |
| 21 | + "@types/react-dom": "^16.8.0", |
| 22 | + "@types/react-dropzone": "^4.2.2", |
| 23 | + "@types/react-redux": "^7.0.1", |
| 24 | + "@types/react-router-dom": "^4.3.1", |
| 25 | + "@types/redux-actions": "^2.3.1", |
| 26 | + "@types/redux-form": "^7.5.0", |
| 27 | + "@types/redux-immutable": "^4.0.1", |
| 28 | + "app-root-path": "^2.1.0", |
| 29 | + "aws-sdk": "^2.399.0", |
| 30 | + "connected-react-router": "^6.2.2", |
| 31 | + "file-saver": "^2.0.0", |
| 32 | + "history": "^4.7.2", |
| 33 | + "hoist-non-react-statics": "^3.3.0", |
| 34 | + "immutable": "^4.0.0-rc.12", |
| 35 | + "joi": "^14.3.1", |
| 36 | + "lodash": "^4.17.11", |
| 37 | + "moment": "^2.24.0", |
| 38 | + "pretty-bytes": "^5.1.0", |
| 39 | + "react": "^16.8.1", |
| 40 | + "react-dom": "^16.8.1", |
| 41 | + "react-dropzone": "^8.1.0", |
| 42 | + "react-redux": "^6.0.0", |
| 43 | + "react-router": "^4.3.1", |
| 44 | + "react-router-dom": "^4.3.1", |
| 45 | + "react-scripts": "2.1.3", |
| 46 | + "redux": "^4.0.1", |
| 47 | + "redux-actions": "^2.6.4", |
| 48 | + "redux-form": "^8.1.0", |
| 49 | + "redux-immutable": "^4.0.0", |
| 50 | + "redux-saga": "^1.0.1", |
| 51 | + "typescript": "^3.3.3", |
| 52 | + "with-immutable-props-to-js": "^1.1.0" |
| 53 | + }, |
| 54 | + "homepage": ".", |
| 55 | + "main": "electron.js", |
| 56 | + "scripts": { |
| 57 | + "start": "react-scripts start", |
| 58 | + "build": "react-scripts build", |
| 59 | + "build:electron": "electron-builder -c electron.json", |
| 60 | + "start:electron": "ELECTRON_START_URL=http://localhost:3000 electron electron.js", |
| 61 | + "postinstall": "electron-builder install-app-deps", |
| 62 | + "format": "prettier --write \"src/**/*.ts\"", |
| 63 | + "test": "react-scripts test", |
| 64 | + "eject": "react-scripts eject" |
| 65 | + }, |
| 66 | + "eslintConfig": { |
| 67 | + "extends": "react-app" |
| 68 | + }, |
| 69 | + "browserslist": [ |
| 70 | + ">0.2%", |
| 71 | + "not dead", |
| 72 | + "not ie <= 11", |
| 73 | + "not op_mini all" |
| 74 | + ], |
| 75 | + "devDependencies": { |
| 76 | + "electron": "^4.0.4", |
| 77 | + "electron-builder": "^20.38.5" |
| 78 | + } |
25 | 79 | } |
0 commit comments