-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.49 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
51
52
53
54
55
{
"name": "grammy-on-deta-template",
"version": "1.0.0",
"description": "Test bot deployed on deta.sh",
"main": "index.js",
"scripts": {
"clean": "rm -rf app && rm -f index.js",
"start": "node index.js",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"prebuild": "yarn clean",
"build": "tsc",
"test": "tsc --noEmit",
"lint": "eslint src/",
"deploy": "yarn build && yarn deploy:all && yarn clean",
"deploy:env": "deta update -e .env",
"deploy:app": "deta deploy",
"deploy:all": "yarn deploy:env && yarn deploy:app"
},
"keywords": [
"deta.sh",
"telegram",
"telegram-bot",
"grammy",
"grammyjs",
"deta"
],
"author": "Stephane Mensah",
"repository": {
"type": "git",
"url": "git+https://github.com/waptik/grammy-on-deta-template.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/waptik/grammy-on-deta-template/issues"
},
"homepage": "https://github.com/waptik/grammy-on-deta-template#readme",
"dependencies": {
"@grammyjs/transformer-throttler": "^1.1.2",
"dotenv": "^16.0.1",
"envalid": "^7.3.1",
"express": "^4.18.1",
"grammy": "^1.10.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
}
}