-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) 路 791 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) 路 791 Bytes
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
{
"name": "graphql-music",
"version": "1.0.0",
"description": "An exercise in building a GraphQL API",
"author": "Nathan Chapman <nathanchapman@utexas.edu> (https://nathanchapman.dev)",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "bun --watch src/index.ts",
"test": "bun test tests/unit",
"test:integration": "bun test ./tests/integration/live-apis.ts",
"test:all": "bun test tests/unit ./tests/integration/live-apis.ts",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"repository": "https://github.com/nathanchapman/graphql-music",
"dependencies": {
"@apollo/server": "^5.0.0",
"@pothos/core": "^4.0.0",
"graphql": "^16.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"typescript": "^6.0.3"
}
}