-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.44 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
{
"name": "ribozilla",
"productName": "Ribozilla",
"version": "1.0.0",
"description": "Flexible architecure for RNA-Seq analysis",
"main": "./build/main.js",
"scripts": {
"clean": "rimraf ./build",
"install-dev": "yarn install && yarn --cwd packages/ribozilla-clui-api install",
"start": "electron .",
"build:main": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.main.js",
"build:renderer": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.renderer.js",
"build:all": "yarn build:main && yarn build:renderer",
"dev:main": "cross-env NODE_ENV=development webpack --config webpack/webpack.config.main.js",
"dev:renderer": "cross-env NODE_ENV=development webpack --config webpack/webpack.config.renderer.js",
"server:main": "cross-env NODE_ENV='development' DEV_SERVER=enable webpack --color --progress --config webpack/webpack.config.main.js",
"server:renderer": "cross-env NODE_ENV='development' webpack-dev-server --color --progress --config webpack/webpack.config.server.js",
"server:all": "concurrently \"yarn server:renderer\" \"wait-on http://localhost:4000 && yarn server:main\"",
"pkg-mac:x64": "yarn clean && yarn build:all && yarn electron-builder build --mac --x64",
"pkg-linux:x64": "yarn clean && yarn build:all && yarn electron-builder build --linux --x64",
"pkg-win:x64": "yarn clean && yarn build:all && yarn electron-builder build --win --x64",
"pkg-all:x64": "yarn clean && yarn build:all && yarn electron-builder build -mwl --x64"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src, ribozilla-extensions}/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"repository": "git+https://github.com/wapablos/ribozilla.git",
"keywords": [
"rna-seq",
"bioinformatics",
"gui",
"ux"
],
"author": "Pablo Wesley",
"license": "MIT",
"bugs": {
"url": "https://github.com/wapablos/ribozilla/issues"
},
"homepage": "https://github.com/wapablos/ribozilla#readme",
"dependencies": {
"@material-ui/core": "^4.11.2",
"ajv": "^8.1.0",
"axios": "^0.21.1",
"electron-store": "^6.0.1",
"fs-jetpack": "^4.1.0",
"jsonpath-plus": "^6.0.1",
"lodash": "^4.17.21",
"notistack": "^1.0.9",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-electron-window-menu": "git+https://github.com/wapablos/react-electron-window-menu.git#a26265e",
"react-flow-renderer": "^9.5.3",
"react-hotkeys-hook": "^3.3.2",
"react-icons": "^4.2.0",
"react-mosaic-component": "^4.1.1",
"react-panelgroup": "^1.0.12",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.168",
"@types/node": "^12.12.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-panelgroup": "^1.0.1",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.5",
"@types/ssh2": "^0.5.44",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"electron": "^11.3.0",
"electron-builder": "22.10.5",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^5.0.13",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"react-hot-loader": "^4.12.21",
"redux-devtools-extension": "^2.13.9",
"rimraf": "^3.0.2",
"ssh2": "^0.8.9",
"style-loader": "^2.0.0",
"styled-components": "^5.1.1",
"ts-loader": "^7.0.5",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "^3.8.3",
"wait-on": "^5.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-electron-reload": "^1.0.1",
"webpack-merge": "^5.4.1"
},
"optionalDependencies": {
"@blueprintjs/core": "^3.44.1",
"@blueprintjs/icons": "^3.26.0"
}
}