-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 999 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
34
35
36
{
"name": "cost-analyzer-tg-bot-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "cross-env NODE_ENV=development tsc-watch --onSuccess \"node ./dist/main.js\"",
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"config": "^3.3.9",
"express": "^4.18.2",
"pg": "^8.11.0"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/express": "^4.17.17",
"@types/node": "^20.1.5",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
}
}