-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "express-server-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc && tsc-alias",
"start:prod": "node dist/main.js",
"start:dev": "nodemon",
"scrape": "ts-node -r tsconfig-paths/register ./src/scraping/main.ts && npm run scrape:map-coaster-photos",
"scrape:theme-parks": "ts-node -r tsconfig-paths/register ./src/scraping/scrape-theme-parks",
"scrape:map-coaster-photos": "ts-node -r tsconfig-paths/register ./src/scraping/map-coaster-photos.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "1.2.2",
"cheerio": "1.0.0-rc.12",
"cli-progress": "3.11.2",
"commander": "9.5.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@types/cli-progress": "3.11.0",
"@types/cors": "2.8.13",
"@types/express": "4.17.15",
"@types/node": "18.11.18",
"nodemon": "2.0.20",
"ts-node": "10.9.1",
"tsc-alias": "1.8.2",
"tsconfig-paths": "4.1.1",
"typescript": "4.9.4"
}
}