-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.07 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@nordcom/nordy",
"version": "0.1.0",
"description": "Add source-control to your Discord server",
"prettier": "@nordcom/prettier",
"main": "./build/index.js",
"type": "module",
"engines": {
"npm": ">=8",
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"generate": "npm-run-all generate:*",
"generate:graphql": "graphql-codegen-esm -r ts-node/register --config codegen.ts",
"start": "node --experimental-loader=extensionless build/index.js",
"predev": "npm run generate",
"dev": "tsc-watch --noClear --onSuccess \"npm run dev:start\"",
"dev:start": "npm run postbuild && npm run generate && npm run start",
"prebuild": "npm run generate",
"build": "tsc --build",
"postbuild": "tsc-alias",
"clean": "tsc --build --clean && rm -rf build/",
"lint": "npm-run-all --parallel lint:*",
"lint:prettier": "prettier src/**/*.* --check",
"lint:types": "tsc -noEmit",
"test": "jest --coverage --passWithNoTests"
},
"author": {
"name": "Nordcom Group Inc.",
"email": "[email protected]",
"url": "https://nordcom.io/"
},
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "[email protected]",
"url": "https://github.com/filiphsps/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/NordcomInc/nordy.git"
},
"keywords": [
"discord"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NordcomInc/nordy/issues"
},
"homepage": "https://nordy.nordcom.io/",
"extensionless": {
"lookFor": [
"js",
"mjs",
"cjs"
]
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-resolvers": "4.4.1",
"@nordcom/prettier": "0.1.1",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-github": "5.0.1",
"eslint-plugin-jest": "28.2.0",
"husky": "9.0.10",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"npm-run-all2": "7.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsc-watch": "6.2.1",
"typescript": "5.4.2"
},
"dependencies": {
"@apollo/server": "4.10.2",
"@apollo/subgraph": "2.7.2",
"body-parser": "1.20.3",
"cors": "2.8.5",
"discord.js": "14.14.1",
"dotenv": "16.4.7",
"express": "4.20.0",
"extensionless": "1.9.9",
"graphql": "16.9.0",
"graphql-http": "1.22.0",
"graphql-tag": "2.12.6",
"mongoose": "8.8.3",
"tslog": "4.9.3",
"uuid": "11.0.1"
}
}