forked from nextstrain/nextstrain.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 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
{
"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": "^14",
"npm": "^6.14"
},
"scripts": {
"build": "./build.sh",
"lint": "eslint --ext .js,.jsx .",
"set-up": "npm run build",
"server": "node server.js",
"start": "npm run server",
"test": "jest --roots ./test/",
"test:ci": "start-server-and-test 'node server.js --verbose >./test/server.log 2>&1' http://localhost:5000 test",
"dev": "./develop.sh"
},
"dependencies": {
"@awaitjs/express": "^0.6.3",
"argparse": "^1.0.10",
"auspice": "2.32.1",
"aws-sdk": "^2.908.0",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"connect-redis": "^4.0.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-naked-redirect": "^0.1.2",
"express-session": "^1.16.2",
"express-static-gzip": "^0.2.2",
"heroku-ssl-redirect": "0.0.4",
"http-errors": "^1.8.0",
"ioredis": "^4.14.1",
"iso-639-1": "^2.1.0",
"jose": "npm:jose-node-cjs-runtime@^3.11.3",
"js-yaml": "^4.0.0",
"make-fetch-happen": "^9.1.0",
"marked": "^0.7.0",
"mime": "^2.5.2",
"node-fetch": "^2.6.0",
"p-limit": "^3.0.1",
"passport": "^0.4.0",
"passport-oauth2": "^1.5.0",
"passport-strategy": "^1.0.0",
"query-string": "^4.2.3",
"react-icons": "^3.11.0",
"request": "^2.88.0",
"session-file-store": "^1.3.1",
"yaml-front-matter": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-lodash": "^3.2.11",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-defaults": "^7.0.1",
"eslint-plugin-filenames": "^0.1.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-react-hooks": "^1.6.0",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^1.3.1",
"jest": "^26.4.2",
"start-server-and-test": "^1.11.4"
},
"cacheDirectories": [
"node_modules",
"static-site/node_modules"
],
"jest": {
"testMatch": [
"**/*.test.js"
],
"globals": {
"BASE_URL": "http://localhost:5000"
}
}
}