forked from gogepp/genoboo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
148 lines (148 loc) · 4.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
{
"name": "genoboo",
"version": "0.4.4",
"repository": "https://github.com/gogepp/genoboo",
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
"license": "AGPL-3.0",
"scripts": {
"preinstall": "meteor help || curl https://install.meteor.com/ | sh",
"preupdate": "meteor update",
"docs": "documentation build --shallow imports/** -f html -o api-docs",
"postdocs": "mkdir -p docs/ && cp api-docs/index.html docs/api-docs.html && cp -r api-docs/assets docs/",
"bundle": "./bundle.sh",
"complete_build": "npm install && npm run bundle",
"dev": "NODE_OPTIONS=--max-old-space-size=8192 GNB_VERSION=$npm_package_version meteor run",
"dev_production": "NODE_OPTIONS=--max-old-space-size=8192 meteor run --production",
"reset": "meteor reset",
"lint": "eslint imports",
"postversion": "pushd cli && npm version $(jq -r .version ../package.json) && popd",
"test": "TEST_CLIENT=0 TEST_BROWSER_DRIVER=puppeteer BABEL_ENV=COVERAGE COVERAGE=1 COVERAGE_OUT_HTML=1 COVERAGE_APP_FOLDER=$PWD/ meteor --verbose test --once --driver-package meteortesting:mocha --raw-logs"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"babel": {
"configFile": false,
"presets": [
"meteor"
],
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"requireConfigFile": false,
"extends": [
"@meteorjs/eslint-config-meteor",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"settings": {
"import/resolver": {
"meteor": {
"extensions": [
".js",
".jsx"
]
}
}
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"semi": true
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@mapbox/node-pre-gyp": "^1.0.6",
"@popperjs/core": "^2.10.2",
"asteroid": "^2.0.3",
"bcrypt": "^5.0.1",
"buffer-shims": "^1.0.0",
"bufferutil": "^4.0.5",
"bulma": "^0.9.0",
"bulma-o-steps": "^1.1.0",
"child-process": "^1.0.2",
"color": "^4.0.0",
"commander": "^9.0.0",
"core-js": "^3.20.3",
"core-util-is": "^1.0.3",
"d3": "7.4.4",
"documentation": "^13.2.5",
"dot-object": "^2.1.4",
"fibers": "^5.0.0",
"file-type": "^17.0.0",
"fs.extra": "^1.3.2",
"glob": "^8.0.0",
"html-entities": "^2.0.0",
"immutability-helper": "^3.0.1",
"install": "^0.13.0",
"lodash": "^4.17.21",
"meteor-babel-helpers": "0.0.3",
"meteor-later": "^1.2.0",
"meteor-node-stubs": "^1.1.0",
"node-gyp": "^9.0.0",
"object-hash": "^2.2.0",
"papaparse": "^5.3.1",
"pkginfo": "^0.4.1",
"prop-types": "^15.7.2",
"randomcolor": "^0.6.0",
"react": "^18.0.0",
"react-bio-viz": "^0.0.8",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.0.0",
"react-popper": "^2.2.4",
"react-resize-detector": "^7.0.0",
"react-router-dom": "^5.3.4",
"react-select": "^5.0.0",
"rus-diff": "^1.1.0",
"simpl-schema": "^1.10.2",
"spawn-promise": "^0.1.8",
"tail": "^2.2.4",
"thread-sleep": "^2.2.0",
"try-thread-sleep": "^2.0.0",
"utf-8-validate": "^5.0.7",
"webfontloader": "^1.6.28",
"ws": "^8.2.3",
"xml-flow": "^1.0.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/react": "^17.0.34",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-meteor": "^7.9.0",
"babel-runtime": "^6.26.0",
"chai": "^4.3.3",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.3.0",
"node-fetch": "^3.0.0",
"prettier": "^2.5.1",
"puppeteer": "^13.1.2"
}
}