This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.69 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
{
"name": "ncov-monitor",
"version": "1.0.0",
"description": "System to get lastest information about Novel Coronavirus (2019-nCov)",
"main": "index.js",
"scripts": {
"bot": "NODE_ENV=production node -r esm src/bot/app.js",
"scheduler": "NODE_ENV=production node -r esm src/tasks/app.js",
"web": "NODE_ENV=production node -r esm src/web/app.js",
"react-dev": "./node_modules/watchify/bin/cmd.js -t ./node_modules/babelify/index.js src/web/views/dynamic/main.js --standalone main -o src/web/public/js/main.js",
"react-build": "./node_modules/browserify/bin/cmd.js -t ./node_modules/babelify/index.js src/web/views/dynamic/main.js --standalone main | ./node_modules/terser/bin/terser --compress --mangle -o src/web/public/js/main.js",
"setup-db": "node -r esm src/setup/run.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "the-robot",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cron": "^1.8.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-react-views": "^0.11.0",
"http-errors": "^1.7.3",
"moment": "^2.24.0",
"mongodb": "^3.5.2",
"morgan": "^1.9.1",
"node-telegram-bot-api": "^0.40.0",
"path": "^0.12.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"recharts": "^2.0.0-beta.1",
"rss-parser": "^3.7.4",
"rsuite": "^4.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-preset-react": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"terser": "^4.6.3",
"watchify": "^3.11.1"
}
}