-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.95 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
82
83
84
85
86
87
88
89
90
{
"name": "co-kong",
"version": "1.0.0",
"description": "description here",
"main": "app.ts",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"dev": "nodemon -r dotenv/config -r tsconfig-paths/register src/app/app.ts",
"serve:dev": "nodemon -r dotenv/config -r tsconfig-paths/register src/app/server/index.ts",
"generate": "zeus http://localhost:8080/v1/graphql ./src/app/api -n --ts -h=x-hasura-admin-secret:admin-secret -s graphql-ws",
"prod": "node -r dotenv/config --trace-warnings dist/app.js dotenv_config_path=.env.prod",
"start": "ts-node -r dotenv/config -r tsconfig-paths/register src/app/app.ts",
"serve": "ts-node -r dotenv/config -r tsconfig-paths/register src/app/server/index.ts",
"lint": "eslint ./src/app/**/*.ts --ext .ts",
"format": "eslint ./src/app/**/*.ts --ext .ts --fix",
"watch": "tsc -p tsconfig.json -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coordinape/discord-bot"
},
"keywords": [
"coordinape",
"discord",
"bot",
"crypto",
"compensation",
"remuneration",
"web3"
],
"author": "coordinape",
"license": "MIT",
"bugs": {
"url": "https://github.com/coordinape/discord-bot"
},
"homepage": "https://github.com/coordinape/discord-bot",
"dependencies": {
"@sentry/integrations": "^7.16.0",
"@sentry/node": "^7.16.0",
"@sentry/tracing": "^7.16.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"form-data": "^4.0.0",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"graphql-zeus": "^5.2.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"slash-create": "^5.11.0",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"uuid": "^9.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@swc/core": "1.3.27",
"@swc/helpers": "0.4.14",
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.15",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "^29.4.3",
"builder-pattern": "^2.1.0",
"eslint": "^8.26.0",
"nodemon": "^2.0.20",
"regenerator-runtime": "0.13.11",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"engines": {
"node": "16",
"yarn": "1.22.19"
},
"engineStrict": true,
"_moduleAliases": {
"@api": "dist/api"
}
}