-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
46
47
48
49
50
{
"name": "rsvp-telegram-bot",
"version": "0.0.1",
"description": "RSVP Telegram Bot",
"main" : "dist/index.js",
"scripts": {
"gcp-build": "rm -rf ./dist/ ; npm install [email protected] ; npm run build",
"build": "tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"prod": "npm run build && node dist/index.js",
"test": "jest"
},
"prisma": {
"seed": "ts-node-dev prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabricior/rsvp-telegram-bot"
},
"author": "Fabricio Rateni",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabricior/rsvp-telegram-bot/issues"
},
"homepage": "https://github.com/fabricior/rsvp-telegram-bot#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"dotenv-to-yaml": "0.1.1",
"eslint": "^8.12.0",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"prisma": "^3.13.0",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"i18next": "^21.8.1",
"telegraf": "^4.7.0",
"winston": "^3.7.2"
}
}