-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.8 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
{
"name": "@nextstrain/evofr-viz",
"version": "0.1.0",
"description": "React components for visualising evofr model JSONs",
"private": true,
"author": "Nextstrain",
"license": "AGPL-3.0-only",
"repository": "github:nextstrain/forecasts-viz",
"homepage": "https://nextstrain.github.io/forecasts-viz",
"main": "dist/index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:local": "rm -rf build && react-scripts build && mkdir build/forecasts-viz && mv build/static build/forecasts-viz",
"serve": "serve -s build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"download": "bash ./scripts/download-data.sh",
"start:local": "concurrently \"node scripts/data-server.js\" \"REACT_APP_CLADES_RENEWAL='http://localhost:8000/clades.renewal.json' REACT_APP_CLADES_MLR='http://localhost:8000/clades.mlr.json' REACT_APP_LINEAGES_MLR='http://localhost:8000/lineages.mlr.json' npm run start\"",
"test": "node src/tests/date-parsing.js",
"lint": "eslint src",
"eject": "react-scripts eject",
"docs": "jsdoc2md src/lib/index.js src/lib/**/*.js > api.md",
"transpile": "rm -rf dist && NODE_ENV=production rollup -c",
"prepack": "npm run transpile"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"files": [
"dist",
"api.md",
"README.md"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"d3": ">=7",
"lodash": "^4.17.21",
"rc-switch": ">=4",
"react": ">=16",
"react-dom": ">=16",
"styled-components": ">=5.3"
},
"peerDependencies": {
"d3": ">=7",
"lodash": ">4.17",
"rc-switch": ">=4",
"react": ">=16",
"react-dom": ">=16",
"styled-components": ">=5.3",
"usehooks-ts": ">=2.9"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"argparse": "^2.0.1",
"concurrently": "^8.2.0",
"express": "^4.18.2",
"gh-pages": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-to-markdown": "^8.0.0",
"puppeteer": "^19.4.0",
"react-scripts": "5.0.1",
"react-tabs": "^4.3.0",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"serve": "^14.2.0",
"usehooks-ts": "^2.9.1",
"web-vitals": "^2.1.4"
}
}