-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "bioniql",
"version": "0.1.0",
"description": "GraphQL API for the LEGO Bionicle theme",
"type": "module",
"main": "build/src/server.js",
"scripts": {
"build": "tsc",
"check:types": "concurrently -n ts,tada \"tsc --noEmit\" \"gql.tada check\"",
"generate:schema": "tsx scripts/printSchema.ts",
"codegen": "npm run generate:schema && gql.tada generate output",
"start": "node .",
"start:db": "json-server --watch data/db.cjs",
"dev": "concurrently -n db,server \"npm:start:db\" \"tsx watch src/server.ts\"",
"deploy": "cdk deploy --all --require-approval never",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tohaker/bioniQL.git"
},
"keywords": [
"lego",
"bionicle",
"graphql"
],
"author": "Miles Bardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tohaker/bioniQL/issues"
},
"homepage": "https://github.com/Tohaker/bioniQL#readme",
"devDependencies": {
"@0no-co/graphqlsp": "1.15.4",
"@graphql-tools/executor-http": "3.1.4",
"@total-typescript/ts-reset": "0.6.1",
"@tsconfig/node22": "22.0.5",
"@types/aws-lambda": "8.10.161",
"@types/json-server": "0.14.8",
"@types/node": "25.5.0",
"aws-cdk": "2.1115.1",
"concurrently": "9.2.1",
"constructs": "10.6.0",
"json-server": "0.17.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.2"
},
"dependencies": {
"@pothos/core": "4.12.0",
"@pothos/plugin-scope-auth": "4.1.6",
"aws-cdk-lib": "2.252.0",
"axios": "1.15.2",
"gql.tada": "1.9.0",
"graphql": "16.13.0",
"graphql-yoga": "5.18.0"
}
}