forked from stjude/sjcloud-data-transfer-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
174 lines (174 loc) · 5.27 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "SJCPDataTransferApp",
"version": "1.6.0",
"license": "Apache-2.0",
"description": "The St. Jude Cloud Data Transfer App, designed for getting data in the St. Jude Cloud easily and reliably.",
"homepage": "https://github.com/stjude/sjcloud-data-transfer",
"repository": {
"type": "git",
"url": "https://github.com/stjude/sjcloud-data-transfer"
},
"main": "app/main.js",
"scripts": {
"start": "electron app/main.js",
"start:dev": "cross-env NODE_ENV=development AUTOUPDATE_ENABLED='false' CHROMIUM_MENU='true' electron app/main.js",
"compile": "cross-env gulp compile",
"develop": "cross-env NODE_ENV=development AUTOUPDATE_ENABLED='false' CHROMIUM_MENU='true' gulp develop",
"dist:build-mac": "cross-env NODE_ENV=production build -m --x64 --ia32",
"dist:build-linux": "cross-env NODE_ENV=production build -l AppImage deb rpm zip --x64 --ia32",
"dist:build-win": "cross-env NODE_ENV=production build -w --x64 --ia32",
"dist:release-mac": "cross-env NODE_ENV=production build -m --x64 --ia32 -p always",
"dist:release-linux": "cross-env NODE_ENV=production build -l deb rpm zip --x64 --ia32 -p always",
"dist:release-win": "cross-env NODE_ENV=production build -w --x64 --ia32 -p always",
"pretty": "prettier --write --tab-width 2 \"app/src/**/*.{js,ts}\"",
"test": "nyc gulp test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"precommit": "lint-staged"
},
"author": "St. Jude Children's Research Hospital <clay.mcleod@stjude.org>",
"build": {
"appId": "cloud.stjude.dta",
"productName": "SJCP Data Transfer",
"dmg": {},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"lint-staged": {
"*.js": [
"npm run pretty",
"git add"
],
"*.ts": [
"npm run pretty",
"git add"
]
},
"dependencies": {
"async": "^2.6.3",
"axios": "^0.19.2",
"bootstrap": "^3.4.1",
"bootstrap-tourist": "^0.3.2",
"cross-fetch": "^2.2.3",
"expand-home-dir": "0.0.3",
"express": "^4.17.1",
"glob-to-regexp": "^0.3.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-hub": "^4.2.0",
"gulp-jasmine": "^2.4.2",
"gulp-jsdoc3": "^1.0.1",
"gulp-serve": "^1.4.0",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"gulp-webserver": "^0.9.1",
"jquery": "^3.4.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.4",
"lodash": "^4.17.15",
"merge-stream": "^1.0.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"pem": "^1.14.4",
"quasar-extras": "^0.0.8",
"quasar-framework": "^0.14.7",
"request": "^2.88.2",
"require-dir": "^0.3.2",
"selfsigned": "^1.10.7",
"sinon": "^5.1.1",
"spinkit": "^1.2.5",
"tippy.js": "^1.2.0",
"todc-bootstrap": "^3.3.7-3.3.13",
"tree-kill": "^1.2.2",
"vue-tippy": "^0.2.8",
"webpack": "^3.8.1",
"webpack-stream": "^5.2.1",
"webpack-target-electron-renderer": "^0.4.0",
"winston": "^2.4.4"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jasmine": "^2.8.16",
"@types/jquery": "^3.3.32",
"@types/request": "^2.48.4",
"@types/sinon": "^5.0.7",
"@types/tmp": "0.0.33",
"@types/winston": "^2.4.4",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^1.2.0",
"codecov": "^3.6.5",
"coveralls": "^3.0.9",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"d3-selection": "^1.4.1",
"electron": "^2.0.18",
"electron-builder": "20.14.7",
"electron-packager": "^12.2.0",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.8.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"gulp-bump": "^2.9.0",
"husky": "^0.14.3",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jasmine-ts": "^0.3.0",
"less": "^3.11.1",
"less-loader": "^4.0.5",
"lint-staged": "^6.0.0",
"null-loader": "^0.1.1",
"nyc": "^15.0.0",
"style-loader": "^0.18.2",
"ts-loader": "^3.1.1",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"vue": "^2.6.11",
"vue-loader": "^13.7.3",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.6.11",
"vue2-dropzone": "^2.3.5",
"vuex": "^2.3.1",
"webpack-notifier": "^1.8.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"nyc": {
"include": [
"app/bin/backend/**/*.js",
"app/bin/frontend/**/*.js"
],
"exclude": [
"gulpfile.js",
"*.conf.js",
"*.config.js"
]
}
}