-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
65 lines (65 loc) · 2.28 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
{
"name": "tsbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"prettier": "@yestheoryfam/prettier-config",
"type": "module",
"scripts": {
"build:docker": "docker build --force-rm --label yesbot -t yesbot --build-arg=YTF_GRAPHQL_SCHEMA_ENDPOINT=http://host.docker.internal:5001/graphql .",
"build:prepare": "NODE_ENV=production && rm -rf node_modules && yarn install && yarn run tsc",
"build:run": "docker run --link yesbot-ts_postgres_1 .",
"codegen": "env-cmd graphql-codegen",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate",
"lint": "prettier --check \"src/**/*.(js|ts|json)\" \"__tests__/**/*.(js|ts|json)\"",
"lint:fix": "prettier --write \"src/**/*.(js|ts|json)\" \"__tests__/**/*.(js|ts|json)\"",
"postinstall": "yarn run db:generate",
"start": "env-cmd tsx watch src/index.ts",
"start:prod": "node build/src/index.js",
"test": "vitest",
"tsc": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "2.4.0",
"@prisma/client": "5.22.0",
"@sentry/node": "8.40.0",
"countries-and-timezones": "3.7.2",
"country-code-emoji": "2.3.0",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"discord.js": "14.16.2",
"fast-glob": "3.3.2",
"graphql": "16.9.0",
"graphql-request": "7.1.2",
"node-cron": "3.0.3",
"path": "0.12.7",
"reflect-metadata": "0.2.2",
"type-fest": "4.28.0",
"uuid": "11.0.3",
"vitest-mock-extended": "2.0.2",
"winston": "3.17.0"
},
"devDependencies": {
"@atmina/local-typescript-operations": "0.9.0",
"@atmina/only-enum-types": "0.8.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/typescript-graphql-request": "6.2.0",
"@parcel/watcher": "2.5.0",
"@types/glob": "8.1.0",
"@types/node": "22.9.3",
"@types/node-cron": "3.0.11",
"@types/ws": "8.5.13",
"@yestheoryfam/prettier-config": "1.0.0",
"env-cmd": "10.1.0",
"prettier": "3.3.3",
"prisma": "5.22.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.5"
},
"packageManager": "[email protected]+sha512.570504f67349ef26d2d86a768dc5ec976ead977aa086b0bb4237e97d5db7ae5c620f9f0e0edf3ea5047205063faff102bf2a2d778664a94eaaa1085ad483fe2e"
}