forked from fairdataihub/FAIRshare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.76 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
{
"name": "fairshare",
"version": "1.2.0",
"description": "Your one-stop tool for making biomedical research data and software FAIR",
"private": true,
"keywords": [
"fair data",
"covid-19",
"covid",
"research",
"data curation",
"zenodo",
"github"
],
"author": "Fair Data Innovations Hub <info@fairdataihub.org> (https://fairdataihub.org)",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build-preclean": "node ./scripts/prebuild.js",
"python:clean": "yarn gulp clean-pre-python-build",
"python:build": "yarn gulp clean-pre-python-build && python -m PyInstaller --onefile --clean ./src/pyflask/api.py --distpath ./src/pyflaskdist",
"python:dev": "python ./src/pyflask/api.py 7632",
"electron:build": "yarn gulp clean-pre-electron-build && vue-cli-service electron:build",
"electron:build-release": "yarn gulp clean-pre-electron-build && vue-cli-service electron:build -p always",
"electron:pre-serve": "copyfiles -u 1 ./src/pyflask/** ./dist_electron && copyfiles -u 1 ./src/splash-screen.html ./dist_electron",
"pre-build": "yarn gulp build-css && yarn gulp copy-all",
"electron:serve": "yarn gulp copy-all && vue-cli-service electron:serve",
"electron:dev:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"dev": "vue-cli-service electron:serve"
},
"main": "background.js",
"repository": {
"type": "git",
"url": "https://github.com/fairdataihub/FAIRshare.git"
},
"dependencies": {
"@electron/remote": "^2.0.0",
"@element-plus/icons-vue": "^0.2.7",
"@headlessui/vue": "^1.5.0",
"@kangc/v-md-editor": "^2.3.13",
"axios": "^0.21.2",
"axios-retry": "^3.2.0",
"core-js": "^3.6.5",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"doi-regex": "^0.1.10",
"dompurify": "^2.3.5",
"electron-data-holder": "^1.0.1",
"electron-log": "^4.4.1",
"electron-updater": "^4.3.9",
"element-plus": "^2.0.1",
"find-free-port": "^2.0.0",
"fs-extra": "^10.0.0",
"gsap": "^3.9.1",
"humanparser": "^2.6.0",
"katex": "^0.15.2",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"marked": "^4.0.12",
"mousetrap": "^1.6.5",
"pinia": "^2.0.0-rc.10",
"ps-tree": "^1.2.0",
"semver": "^7.3.5",
"universal-analytics": "^0.5.3",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"vue": "^3.0.0",
"vue-router": "4",
"vue3-lottie": "^2.0.2",
"vue3-popper": "^1.4.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@iconify/vue": "^3.1.4",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.2",
"@vue/cli-plugin-babel": "5.0.0-rc.1",
"@vue/cli-plugin-eslint": "5.0.0-rc.1",
"@vue/cli-service": "5.0.0-rc.1",
"@vue/compiler-sfc": "^3.0.0",
"autoprefixer": "^10.4.0",
"babel-eslint": "^10.1.0",
"concurrently": "^6.5.1",
"copyfiles": "^2.4.1",
"del": "^6.0.0",
"dotenv": "^10.0.0",
"electron": "^17.0.0",
"electron-devtools-installer": "^3.1.0",
"electron-notarize": "^1.1.1",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.7",
"tailwindcss-debug-screens": "^2.1.0",
"vue-cli-plugin-electron-builder": "~2.1.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}