-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "apollo-datasource-cosmosdb",
"version": "1.1.0",
"description": "An Apollo data source for Azure CosmosDB",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/andrejpk/apollo-datasource-cosmosdb",
"author": "Andrej Kyselica and contributors",
"license": "MIT",
"keywords": [
"apollo",
"graphql",
"datasource",
"azure",
"cosmosdb",
"cosmos"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "ts-mocha tests/**/*.test.ts",
"coverage": "nyc npm test",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"release": "release-it"
},
"devDependencies": {
"@azure/cosmos": "3.17.3",
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/node": "20.11.28",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"@vercel/cosmosdb-server": "0.15.0",
"chai": "4.4.1",
"eslint": "8.57.0",
"graphql": "^16.8.1",
"mocha": "10.3.0",
"nyc": "15.1.0",
"prettier": "3.2.5",
"release-it": "^17.1.1",
"ts-mocha": "10.0.0",
"typescript": "5.7.3",
"ync": "0.0.9"
},
"peerDependencies": {
"@azure/cosmos": "^3.17.3"
},
"dependencies": {
"apollo-datasource": "^3.3.2",
"apollo-server-caching": "^3.3.0",
"apollo-server-errors": "^3.3.1",
"bson": "^6.4.0",
"dataloader": "^2.2.2"
},
"files": [
"/dist"
]
}