-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
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
{
"name": "simples3",
"version": "0.2.2",
"description": "A simple Amazon s3 browser",
"author": "Pop-Code <[email protected]>",
"private": true,
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@material-ui/core": "^4.1.0",
"@material-ui/icons": "^4.1.0",
"@material-ui/styles": "^4.1.0",
"@types/app-root-path": "^1.2.4",
"@types/hoist-non-react-statics": "^3.0.1",
"@types/jest": "^24.0.0",
"@types/joi": "^14.3.1",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.24",
"@types/pretty-bytes": "^5.1.0",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-dropzone": "^4.2.2",
"@types/react-redux": "^7.0.1",
"@types/react-router-dom": "^4.3.1",
"@types/redux-actions": "^2.3.1",
"@types/redux-form": "^7.5.0",
"@types/redux-immutable": "^4.0.1",
"app-root-path": "^2.1.0",
"aws-sdk": "^2.399.0",
"connected-react-router": "^6.2.2",
"history": "^4.7.2",
"hoist-non-react-statics": "^3.3.0",
"immutable": "^4.0.0-rc.12",
"joi": "^14.3.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"pretty-bytes": "^5.1.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-dropzone": "^8.1.0",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-form": "^8.1.0",
"redux-immutable": "^4.0.0",
"redux-saga": "^1.0.1",
"typescript": "^3.3.3",
"with-immutable-props-to-js": "^1.1.0"
},
"homepage": ".",
"main": "electron.js",
"scripts": {
"start": "react-scripts start",
"start:electron": "ELECTRON_START_URL=http://localhost:3000 electron electron.js",
"build": "react-scripts build",
"build:electron": "build -mwl -c electron.json",
"postinstall": "build install-app-deps",
"release": "yarn build:electron --publish always",
"format": "prettier --write \"src/**/*.ts\"",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"electron": "^4.0.4",
"electron-builder": "^20.38.5"
}
}