-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"main": "build/index.js",
"scripts": {
"build": "tsc",
"dev": "TS_NODE_BASEURL=./src tsx --env-file=.env src/index.ts",
"start": "TS_NODE_BASEURL=./build node -r tsconfig-paths/register --env-file=.env build/index.js",
"lint": "eslint ./ --ext .ts --fix",
"prisma:dev": "prisma migrate dev && prisma generate",
"prisma:fetch": "prisma db pull && prisma generate",
"prisma:format": "prisma format",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prepare": "husky",
"commitlint": "commitlint --edit",
"commit": "git-cz",
"docker:services:up": "docker compose -f docker-compose.yml up -d db-pg"
},
"author": "JVOPINHO",
"license": "AGPL-3.0",
"dependencies": {
"@discordjs/rest": "^0.5.0",
"@oceanicjs/builders": "^1.1.11",
"@prisma/client": "4.1.0",
"axios": "^0.26.1",
"canvas": "^2.11.2",
"chalk": "4.0.0",
"cluster": "^0.7.7",
"discord-api-types": "^0.37.92",
"dotenv": "^16.0.0",
"fastify": "^4.2.0",
"fastify-raw-body": "^4.0.0",
"figures": "^6.1.0",
"form-data": "^4.0.0",
"ioredis": "^5.2.1",
"js-yaml": "^4.1.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.34",
"oceanic-collectors": "^1.0.7",
"oceanic.js": "^1.10.5-dev.58ffba3",
"pg": "^8.12.0",
"pino": "^9.1.0",
"pino-pretty": "^11.0.0",
"sydb": "^2.0.1",
"tiny-typed-emitter": "^2.1.0",
"ts-mixer": "^6.0.4",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3",
"type-fest": "^4.26.0",
"winston": "^3.8.0",
"yaml": "^2.4.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@types/dotenv": "^8.2.0",
"@types/js-yaml": "^4.0.5",
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^17.0.21",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.19.0",
"eslint-plugin-import-helpers": "latest",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"prisma": "^4.1.0",
"tsconfig-paths": "^4.0.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}