This repository was archived by the owner on Jul 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@climbwhere/api",
"version": "0.0.1",
"description": "Climbing gym slot scraper",
"author": "Ravern Koh <ravernkoh@gmail.com>",
"private": true,
"scripts": {
"dev": "nodemon --watch 'src/**' --ext 'ts' --exec 'ts-node src/api/index.ts'",
"build": "tsc",
"start": "node dist/api/index.js",
"scrape:dev": "ts-node src/scraper/index.ts",
"scrape": "node dist/scraper/index.js",
"lint": "eslint '*/**/*.{js,ts}'"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/is-uuid": "^1.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.41",
"@types/node-telegram-bot-api": "^0.51.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"async-middleware": "^1.2.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"is-uuid": "^1.0.2",
"knex": "^0.95.4",
"memory-cache": "^0.2.0",
"moment-timezone": "^0.5.33",
"node-telegram-bot-api": "^0.53.0",
"pg": "^8.6.0",
"puppeteer": "^8.0.0"
}
}