-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.65 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
59
{
"name": "apollo-datasource-firestore",
"version": "6.2.0",
"description": "An Apollo DataSource for Firestore",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.production.json",
"watch": "tsc --watch -p tsconfig.production.json",
"test:emulator": "firebase emulators:exec \"npm run coverage\"",
"test": "mocha tests/**/*.test.ts",
"coverage": "c8 -r lcov -r text npm test",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"prepack": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swantzter/apollo-datasource-firestore.git"
},
"keywords": [
"apollo",
"graphql",
"datasource",
"firebase",
"firestore"
],
"author": "Svante Bengtson <[email protected]> (https://swantzter.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/swantzter/apollo-datasource-firestore/issues"
},
"homepage": "https://github.com/swantzter/apollo-datasource-firestore#readme",
"devDependencies": {
"@google-cloud/firestore": "^7.4.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.28",
"@types/node-fetch": "^2.6.11",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"firebase-tools": "^13.5.1",
"graphql": "^16.8.1",
"mocha": "^10.3.0",
"ts-node": "^10.9.2",
"typescript": "5.3",
"undici": "^6.9.0"
},
"peerDependencies": {
"@google-cloud/firestore": "^5 || ^6 || ^7"
},
"dependencies": {
"@apollo/utils.keyvaluecache": "^3.1.0",
"dataloader": "^2.2.2",
"eslint-config-love": "^43.1.0"
},
"files": [
"/dist"
]
}