forked from lifeconsciousness/rent-calculator-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 889 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
{
"name": "rentbuster",
"version": "1.0.0",
"description": "Rent calculator app that takes address and multiple house parameters as input and retrieves information about the property from publicly available databases. The app then sends this data to a Google Spreadsheet where the final value is calculated and returned.",
"main": "server.js",
"scripts": {
"start": "nodemon --experimental-modules server.js",
"build": "cd frontend && npm install && npm run build && cd ../ && npm cache clean --force && npm install puppeteer"
},
"author": "Maksym Tovstolis",
"license": "ISC",
"dependencies": {
"async-mutex": "^0.4.0",
"axios": "^1.3.5",
"chromium": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"googleapis": "^118.0.0",
"node-cron": "^3.0.2",
"nodemon": "^2.0.22",
"puppeteer": "^23.7.1"
}
}