-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
140 lines (140 loc) · 4.61 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "aws-console",
"author": "Philip Dowie <philip@jnawk.nz>",
"description": "AWS Console",
"license": "ISC",
"version": "3.3.1",
"main": "./dist/main.bundle.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jnawk/aws-electron.git"
},
"bugs": {
"url": "https://github.com/jnawk/aws-electron/issues"
},
"keywords": [
"AWS"
],
"homepage": "https://github.com/jnawk/aws-electron/blob/master/README.md",
"build": {
"appId": "jnawk.aws-console",
"productName": "AWS Console",
"directories": {
"app": "./dist/",
"output": "./out/",
"buildResources": "build"
},
"mac": {
"target": "zip"
},
"win": {
"target": [
"portable",
"nsis",
"7z",
"zip"
],
"asar": true
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"zip",
"tar.gz"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"buildVersion": "1"
},
"scripts": {
"test": "mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.ts\"",
"start": "electron ./dist/main.bundle.js",
"dev": "rimraf dist && cross-env NODE_ENV=development webpack --watch --progress --color",
"devOne": "rimraf dist && cross-env NODE_ENV=development webpack --progress --color",
"prod": "rimraf dist && cross-env NODE_ENV=production webpack --progress --color",
"dist": "npm i; electron-icon-builder --flatten --input=icon.png --output=build/; npm run prod; electron-builder build --linux --mac --x64; npm run dist:win; npm i",
"dist:mac": "electron-builder build --mac --x64",
"dist:linux": "electron-builder build --linux --x64",
"dist:win": "bash -c \"docker run --ulimit nofile=5000:5000 --rm -ti --env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS_TAG|TRAVIS|TRAVIS_REPO_|TRAVIS_BUILD_|TRAVIS_BRANCH|TRAVIS_PULL_REQUEST_|APPVEYOR_|CSC_|GH_|GITHUB_|BT_|AWS_|STRIP|BUILD_') --env ELECTRON_CACHE=/.cache/electron --env ELECTRON_BUILDER_CACHE=/.cache/electron-builder -v ${PWD}:/project:z -v ${PWD##*/}node-modules:/project/node_modules:z -v ~/.cache/electron:/.cache/electron:z -v ~/.cache/electron-builder:/.cache/electron-builder:z electronuserland/builder:wine bash -c \\\"ls -lan /root; chown -R 1000 /root /.cache; chown -R root /root/.wine; npm i -g npm && npm i && id && npm run dist:win:docker\\\"\"",
"dist:win:docker": "electron-builder --windows",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test"
},
"dependencies": {
"@aws-sdk/client-iam": "^3",
"@aws-sdk/client-sts": "^3",
"@aws-sdk/credential-provider-ini": "^3",
"@aws-sdk/credential-providers": "^3",
"@aws-sdk/types": "^3",
"@smithy/node-http-handler": "^2.5.0",
"bootstrap": "^5",
"classnames": "^2.5.1",
"debounce": "^2.0.0",
"electron-context-menu": "^3",
"electron-settings": "^4.0.2",
"ini": "^4.1.2",
"proxy-agent": "^6.4.0",
"query-string": "<8",
"react": "^17",
"react-dom": "^17",
"react-router": "^6",
"react-router-dom": "^6",
"react-transition-group": "^4",
"reactstrap": "^9",
"split-ca": "^1.0.1",
"sprintf-js": "^1.1.3",
"urllib": "^2.41.0"
},
"devDependencies": {
"@types/chai": "^4",
"@types/debounce": "^1.2.4",
"@types/ini": "^4.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/react-router": "^5",
"@types/react-router-dom": "^5",
"@types/react-transition-group": "^4",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chai": "^4.3.8",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6",
"electron": "^29.1.5",
"electron-builder": "^24.13.3",
"electron-icon-builder": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19",
"eslint-import-resolver-webpack": "^0",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-mocha": "^10",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5",
"lodash": "^4",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"source-map-loader": "^5.0.0",
"style-loader": "^3",
"ts-loader": "^9",
"ts-node": "^10",
"tsconfig-paths": "^4",
"typescript": "^5.4.3",
"webpack": "^5",
"webpack-cli": "^5.1.4"
},
"overrides": {
"urllib": {
"proxy-agent": "^6.3.0"
}
}
}