-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
56
57
{
"name": "mordente",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:daniharo/mordente.git",
"author": "Daniel Haro Contreras <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "ts-node src/app.ts",
"dev": "nodemon src/app.ts",
"pm2": "pm2-runtime start pm2.config.cjs",
"prepare": "husky install",
"migrate:dev": "prisma db push",
"migrate:prod": "prisma migrate deploy"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.211.0",
"@aws-sdk/s3-request-presigner": "^3.211.0",
"@grammyjs/conversations": "^1.0.3",
"@grammyjs/files": "^1.0.4",
"@grammyjs/fluent": "^1.0.3",
"@grammyjs/menu": "^1.1.2",
"@grammyjs/storage-prisma": "^2.0.0",
"@grammyjs/types": "^2.10.2",
"@moebius/fluent": "^1.1.0",
"@prisma/client": "^4.6.1",
"@sentry/node": "^7.19.0",
"@sentry/tracing": "^7.19.0",
"@types/cron": "^2.0.0",
"@types/node": "^18.11.9",
"@types/pug": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cron": "^2.1.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"grammy": "^1.12.0",
"grammy-calendar": "^0.0.2",
"prisma": "^4.6.1",
"pug": "^3.0.2",
"typescript": "^4.9.3"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma-dbml-generator": "^0.9.1",
"ts-node": "^10.9.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}