-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 3.11 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
{
"name": "typhinet",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/typhoidgenomics/TyphiNET"
},
"description": "typhinet server",
"main": "server.js",
"type": "module",
"scripts": {
"start": "if-env NODE_ENV=production && yarn start:prod || yarn start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"yarn client\"",
"install": "cd client && yarn",
"client": "cd client && yarn start",
"build": "cd client && yarn build"
},
"license": "GPL-3.0",
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@typescript-eslint/parser": "^6.7.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chokidar": "^3.5.2",
"chroma-js": "^2.4.2",
"compression": "^1.7.4",
"config": "^3.3.1",
"cookie-parser": "~1.4.5",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"d3-scale": "^4.0.0",
"debug": "~4.3.1",
"deep-object-diff": "^1.1.0",
"del": "^6.0.0",
"dom-to-image": "^2.6.0",
"dotenv": "^10.0.0",
"downloadjs": "^1.4.7",
"express": "~4.17.1",
"express-async-handler": "^1.1.4",
"express-fileupload": "^1.2.0",
"express-openid-connect": "^2.0.0",
"express-validator": "^6.6.1",
"fast-csv": "^4.3.6",
"helmet": "^3.23.3",
"html2pdf.js": "^0.10.1",
"http-errors": "~1.8.0",
"if-env": "^1.0.4",
"jsonwebtoken": "^9.0.2",
"jspdf": "^2.3.1",
"material-dashboard": "^2.1.0",
"memjs": "^1.3.2",
"mongodb": "^3.6.9",
"mongoose": "^5.13.1",
"mongoose-seed": "^0.6.0",
"mongoose-seed-csv": "^0.0.4",
"morgan": "~1.10.0",
"next": "^13.4.19",
"node-gyp": "^9.3.1",
"nodemailer": "^6.6.2",
"objects-to-csv": "^1.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.1.2",
"react-router-dom": "^5.3.0",
"react-script": "^2.0.5",
"request": "^2.88.2",
"save-svg-as-png": "^1.4.17",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.15",
"browser-sync": "^2.27.4",
"concurrently": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^9.0.1",
"nodemon": "^3.0.1",
"prettier": "^2.1.2",
"supertest": "^6.1.3",
"typescript": "^4.8.4"
},
"engines": {
"node": "^14.8.0",
"yarn": "^1.22.5"
}
}