-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 947 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
25
26
27
28
29
30
31
32
33
{
"name": "hn-daily",
"version": "1.0.0",
"description": "REST API built with TypeScript and Express for Hacker News Daily.",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"script:node": "node --enable-source-maps --watch dist/index.js",
"dev:node": "nodemon --watch dist --exec \"pnpm run script:node\"",
"dev": "pnpm run \"/dev:/\"",
"check": "pnpm biome check --apply ."
},
"keywords": ["hacker news", "api"],
"author": "Adhiraj Dutta <bytehead.dev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.19.2"
}
}