-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.87 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
{
"name": "hawk.api",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"compile": "tsc",
"dev": "nodemon --watch './**/*.ts' --exec 'yarn start:dev' index.ts",
"lint": "eslint \"**/*.ts\" --fix",
"lint:test": "eslint \"**/*.ts\" --max-warnings=0",
"start": "yarn node dist/index.js",
"start:dev": "yarn compile && yarn node dist/index.js -c app-config.yaml -c app-config.local.yaml",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@codex-team/config-loader": "0.0.1-alpha.2",
"@fastify/accepts": "^4.0.0",
"@fastify/cors": "^8.1.0",
"@fastify/type-provider-typebox": "^2.3.0",
"@graphql-codegen/add": "^3.2.0",
"@graphql-tools/merge": "^8.3.1",
"@graphql-tools/schema": "^8.5.1",
"@graphql-tools/utils": "^8.9.0",
"@hawk.so/types": "https://github.com/codex-team/hawk.types.git#46fa89515851b86991785b7c9b89e7099467c168",
"@sinclair/typebox": "^0.24.35",
"apollo-server-core": "^3.10.0",
"arg": "^5.0.2",
"argon2": "^0.28.7",
"fastify": "^4.3.0",
"graphql": "^16.5.0",
"graphql-scalars": "^1.17.0",
"jose": "^4.8.3",
"mongodb": "^4.8.1",
"pino": "^8.4.0",
"prom-client": "^14.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.3",
"@graphql-codegen/introspection": "2.2.0",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-resolvers": "2.7.2",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/eslint": "^8",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"apollo-server-plugin-base": "^3.6.2",
"eslint": "^8.21.0",
"eslint-config-codex": "^1.7.0",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-n": "^15.2.4",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"typescript": "^4.7.4"
}
}