-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "Amazon-Scraper",
"version": "1.0.0",
"description": "A simple Amazon data scraping app",
"main": "server.ts",
"author": "Charlie Sparks",
"license": "MIT",
"private": false,
"scripts": {
"start": "nodemon --watch './**/*.ts' --exec 'ts-node' src/server.ts"
},
"devDependencies": {
"@koa/cors": "^3.1.0",
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/koa-bodyparser": "^5.0.2",
"@types/koa-compose": "^3.2.5",
"@types/koa-router": "^7.4.4",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"http-status-codes": "^2.1.4",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.2.0",
"koa-router": "^10.1.1",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typeorm": "^0.2.37",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.0.3",
"@types/request-promise": "^4.1.48",
"request-promise": "^4.2.6"
}
}