-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "hentak-kaki",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:fourthclasshonours/hentak-kaki.git",
"author": "Duncan Leo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/node": "^16",
"@types/node-telegram-bot-api": "^0.56.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"esbuild": "^0.16.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.8"
},
"scripts": {
"sequelize": "sequelize",
"clean": "rm -Rf dist",
"start": "node dist/main.js",
"develop": "ts-node-dev --respawn --watch src,types src/main.ts",
"set-webhook": "ts-node scripts/set-webhook.ts",
"build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=dist --target=node16 --bundle --sourcemap"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.256.0",
"@aws-sdk/lib-dynamodb": "^3.256.0",
"axios": "^1.2.3",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"node-html-markdown": "^1.3.0",
"node-telegram-bot-api": "^0.57.0",
"puppeteer": "^19.6.0",
"typescript": "^4.3.5"
}
}