-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "inshorts-api",
"version": "1.0.0",
"description": "Inshorts unofficial news API",
"license": "MIT",
"author": "sumit kolhe",
"main": "index.js",
"repository": "https://github.com/sumitkolhe/inshorts-api",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch ./src/server.ts",
"start": "npm run build && cross-env NODE_ENV=production node dist/src/server.js",
"build": "tsc",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint . --ext \".ts\"",
"lint:fix": "eslint --fix --ext .js,.ts .",
"deploy": "vercel deploy --prod"
},
"dependencies": {
"axios": "^1.3.6",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"express-timeout-handler": "^2.2.2",
"joi": "^17.9.1",
"morgan": "^1.10.0",
"tsx": "^3.12.6",
"winston": "^3.8.2"
},
"devDependencies": {
"@kolhe/eslint-config": "^1.1.8",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.0",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}