-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
120 lines (120 loc) · 4.12 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
{
"type": "module",
"private": true,
"name": "nextstrain.org",
"main": "server.js",
"author": "James Hadfield",
"license": "AGPL-3.0-only",
"repository": "github:nextstrain/nextstrain.org",
"homepage": "https://nextstrain.org",
"engines": {
"node": "^20",
"npm": "^10"
},
"scripts": {
"build": "./build.sh",
"build:feeds": "node scripts/generate-blog-feeds.js",
"lint": "npm run lint:server",
"lint:server": "DEBUG=eslint:cli-engine npx eslint --max-warnings=0 --ext .js,.jsx .",
"lint:static-site": "cd static-site && DEBUG=eslint:cli-engine npx eslint --max-warnings=0 --ext .js,.jsx,.ts,.tsx .",
"server": "node server.js",
"groups": "node server.js --app ./src/groupsApp.js",
"start": "npm run server",
"//test": "echo 'NODE_OPTIONS is required until this issue is resolved: https://github.com/facebook/jest/issues/9430 '",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --roots ./test/",
"test:ci": "start-server-and-test 'USE_PREBUILT_STATIC_SITE=1 RESOURCE_INDEX=test/date_descriptor_index.json DEBUG=\"nextstrain:*${DEBUG:+,}${DEBUG:-}\" node server.js --verbose >./test/server.log 2>&1' http://localhost:5000 test",
"dev": "NODE_ENV=development nodemon --verbose -- server.js --verbose \"$@\"",
"dev:ssg": "NODE_ENV=development USE_PREBUILT_STATIC_SITE=1 nodemon --verbose -- server.js --verbose \"$@\""
},
"dependencies": {
"@aws-crypto/client-node": "^4.0.1",
"@aws-sdk/client-cognito-identity-provider": "^3.53.0",
"@aws-sdk/client-s3": "^3.431.0",
"@aws-sdk/client-sts": "^3.552.0",
"@aws-sdk/s3-request-presigner": "^3.431.0",
"@keyv/redis": "^2.8.0",
"@keyv/sqlite": "^3.6.6",
"@renovatebot/pep440": "^2.1.20",
"@smithy/node-http-handler": "^2.1.8",
"@types/sanitize-html": "^2.13.0",
"argparse": "^1.0.10",
"aws-sdk": "^2.908.0",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"connect-redis": "^4.0.3",
"content-disposition": "^0.5.4",
"content-type": "^1.0.4",
"d3": "^7.9.0",
"debug": "^4.3.4",
"express": "^4.17.1",
"express-naked-redirect": "^0.1.2",
"express-session": "^1.16.2",
"express-static-gzip": "^0.2.2",
"gray-matter": "^4.0.3",
"heroku-ssl-redirect": "0.0.4",
"http-errors": "^1.8.0",
"http-link-header": "^1.1.1",
"ioredis": "^4.14.1",
"jose": "npm:jose-node-cjs-runtime@^3.11.3",
"js-yaml": "^4.0.0",
"jszip": "^3.10.1",
"jump.js": "^1.0.2",
"keyv": "^4.5.4",
"lodash.partition": "^4.6.0",
"luxon": "^3.4.4",
"make-fetch-happen": "^11.1.1",
"mapbox-gl": "^3.2.0",
"marked": "^14.1.3",
"mime": "^2.5.2",
"neat-csv": "^7.0.0",
"negotiator": "^0.6.2",
"next": "^14.1.4",
"next-plugin-yaml": "^1.0.1",
"node-fetch": "^2.6.0",
"passport": "^0.4.0",
"passport-oauth2": "^1.5.0",
"passport-strategy": "^1.0.0",
"path-to-regexp": "^6.2.1",
"proxy-agent": "^6.3.1",
"raw-body": "^2.4.2",
"react-collapsible": "^2.10.0",
"react-icons": "^5.0.1",
"react-map-gl": "^7.1.7",
"react-select": "^5.8.0",
"react-tooltip": "^4.5.1",
"react-tooltip-v5": "npm:react-tooltip@^5.26.3",
"react-virtualized": "^9.22.5",
"sanitize-html": "^2.13.0",
"session-file-store": "^1.3.1",
"styled-components": "^6.1.8",
"yaml-front-matter": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@eslint/js": "^9.4.0",
"@jest/globals": "^29.0.2",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.2.73",
"babel-plugin-lodash": "^3.2.11",
"benchmark": "^2.1.4",
"eslint": "^8.23.0",
"eslint-config-next": "^14.1.4",
"eslint-plugin-jest": "^28.6.0",
"feed": "^4.2.2",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^1.3.1",
"jest": "^27.5.1",
"jest-extended": "^1.1.0",
"nodemon": "^2.0.22",
"request": "^2.88.2",
"start-server-and-test": "^1.11.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"cacheDirectories": [
"node_modules",
"static-site/node_modules"
]
}