-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.47 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
{
"name": "covizu",
"version": "1.0.0",
"description": "CoVizu is an open source project to develop a `near real time' SARS-CoV-2 genome analysis and visualization system that highlights potential cases of importation from other countries or ongoing community transmission.",
"main": "server.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "NODE_ENV='TEST' HTTP_PORT='8001' DATA_FOLDER='data_test' node server.js",
"start": "node --max_old_space_size=8192 server.js",
"start-db1": "DBNUMBER=1 node server.js",
"start-db2": "DBNUMBER=2 node server.js",
"dev": "nodemon server.js --ignore 'js/*.js'",
"delete-users": "node mongodb_scripts/deleteUsers.js",
"create-users": "node mongodb_scripts/createUsers.js",
"update-db1": "DBNUMBER=1 node --max_old_space_size=8192 mongodb_scripts/updateDatabase.js",
"update-db2": "DBNUMBER=2 node --max_old_space_size=8192 mongodb_scripts/updateDatabase.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PoonLab/covizu.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PoonLab/covizu/issues"
},
"homepage": "https://github.com/PoonLab/covizu#readme",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^16.0.1",
"express": "^4.21.1",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"mongodb": "^5.8.0"
},
"devDependencies": {
"cypress": "^13.6.2"
}
}