-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·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": "Realty-parser-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon app.js",
"restart": "clear && node server.js",
"send-lists": "scp storage/lists.json storage/ids.json root@134.122.76.60:/home/realtyparserapp/Parser-server/tmp",
"get-lists": "scp root@134.122.76.60:/home/realtyparserapp/Parser-server/db/lists.json /Users/paulkirov/Documents/Parser-server",
"get-logs": "scp root@165.227.173.209:/home/realtyparserapp/.pm2/logs/server-error.log /Users/paulkirov/Documents/Parser-server",
"copy-temp": "cp -i /home/kirov/temp/lists.json /home/realtyparserapp/Parser-server/db",
"dev": "NODE_ENV=development npm run prod",
"prod": "pm2 start server.js && pm2 logs server --lines 1000",
"b-lists": "js-beautify storage/lists.json -r",
"b-backup": "js-beautify storage/backup.json -r",
"cleanNStore": "node -e 'require(\"./db\").readAndCleanStorage()' && npm run b-lists && npm run b-backup"
},
"author": "Paul Kirov",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.388.0",
"axios": "^0.24.0",
"body-parser": "^1.18.3",
"chalk": "^3.0.0-beta.2",
"cheerio": "^1.0.0-rc.10",
"compress": "^0.99.0",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"firebase-admin": "^10.0.0",
"helmet": "^3.15.0",
"mongodb-uri": "^0.9.7",
"mongoose": "^5.4.4",
"morgan": "^1.9.1",
"node-cron": "^3.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.4.1",
"puppeteer": "^10.4.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"eslint": "^8.1.0"
}
}