forked from megmogmog1965/cloudwatchlogs-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cloudwatchlogs-downloader",
"version": "1.3.7",
"private": true,
"description": "Cross-platform App to download logs from CloudWatch Logs.",
"scripts": {
"start": "npm run build:development && electron ./dist/",
"build": "npm run build:production",
"build:development": "npx webpack --config webpack.development.js && gulp copy",
"build:production": "npx webpack --config webpack.production.js && gulp copy",
"test": "jest",
"pack": "npm run test && npm run build:production && electron-builder --dir",
"dist": "npm run test && npm run build:production && electron-builder"
},
"homepage": ".",
"repository": "https://github.com/megmogmog1965/cloudwatchlogs-downloader",
"keywords": [
"Electron",
"TypeScript",
"React",
"Redux",
"AWS",
"CloudWatch",
"CloudWatch Logs"
],
"author": "Yusuke Kawatsu",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/electron-json-storage": "^4.0.0",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.2.3",
"@types/moment": "^2.13.0",
"@types/node": "^9.6.5",
"@types/react": "^16.3.10",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^5.0.15",
"@types/redux-form": "^7.2.2",
"@types/sanitize-filename": "^1.1.28",
"@types/uuid": "^3.4.3",
"@types/voca": "^1.3.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"electron": "^2.0.4",
"electron-builder": "^20.22.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gulp": "^3.9.1",
"gulp-json-editor": "^2.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"redux-mock-store": "^1.5.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"ts-jest": "^22.4.2",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.5.1",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"aws-sdk": "^2.218.1",
"electron-default-menu": "^1.0.1",
"electron-json-storage": "^4.0.3",
"moment": "^2.22.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-thunk": "^2.2.0",
"sanitize-filename": "^1.6.1",
"uuid": "^3.2.1",
"voca": "^1.4.0"
}
}