-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1010 Bytes
/
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
{
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"cluster": "^0.7.7",
"commander": "^4.0.0",
"convict": "^5.2.0",
"crypto-js": "^3.1.9-1",
"csv-parser": "^2.3.1",
"mongoose": "^5.7.8",
"node-http-xhr": "^1.3.4",
"node-podcast-parser": "^2.3.0",
"nodemon": "^1.19.4",
"p-queue": "^6.2.0",
"redis": "^2.8.0",
"requests": "^0.3.0",
"rimraf": "^3.0.0",
"xml2js": "^0.4.22"
},
"scripts": {
"build": "rimraf dist/ && babel ./src --out-dir dist/ --copy-files",
"server": "babel-node ./src",
"server:prod": "node ./dist/",
"dev": "NODE_ENV=development npm-run-all server",
"prod": "NODE_ENV=production npm-run-all clean build server:prod",
"clean": "rimraf dist",
"watch": "nodemon"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}