-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.08 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.08 KB
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": "opensource@nordcom.io",
"url": "https://nordcom.io/"
},
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "filiph@nordcom.io",
"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": "6.1.3",
"@graphql-codegen/typescript": "5.0.9",
"@graphql-codegen/typescript-resolvers": "5.1.7",
"@nordcom/prettier": "0.1.1",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.19",
"@types/express": "5.0.5",
"@types/jest": "30.0.0",
"@types/node": "22.19.15",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-jest": "28.2.0",
"husky": "9.0.10",
"jest": "30.3.0",
"lint-staged": "16.3.3",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"tsc-watch": "7.2.0",
"typescript": "5.4.2"
},
"dependencies": {
"@apollo/server": "5.4.0",
"@apollo/subgraph": "2.7.2",
"body-parser": "2.2.2",
"cors": "2.8.6",
"discord.js": "14.14.1",
"dotenv": "16.6.1",
"express": "4.22.1",
"extensionless": "2.0.6",
"graphql": "16.13.1",
"graphql-http": "1.22.0",
"graphql-tag": "2.12.6",
"mongoose": "9.3.0",
"tslog": "4.10.2",
"uuid": "13.0.0"
}
}