forked from VolfJS/-WolfHotels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
41
42
43
44
45
{
"name": "hotels-support-bot",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"author": "VolfJS",
"private": true,
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.prod.json",
"build:dev": "tsc",
"watch": "npm run build:dev -- --watch",
"lint": "npx eslint ./src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node .",
"dev": "nodemon ."
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"commander-core": "^3.0.5",
"common-tags": "^1.8.2",
"dotenv": "^16.0.3",
"grammy": "^1.12.0",
"grammy-scenes": "^7.3.0",
"prisma": "^4.7.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}