-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "firestore-dataloader",
"version": "0.2.6",
"description": "GraphQL DataLoader for Cloud Firestore.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "shoNagai <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/shoNagai/firestoreDataLoader#readme",
"repository": {
"type": "git",
"url": "https://github.com/shoNagai/firestoreDataLoader"
},
"bugs": {
"url": "https://github.com/shoNagai/firestoreDataLoader/issues"
},
"keywords": [
"typescript",
"dataloader",
"apollo-datasource",
"firestore"
],
"scripts": {
"build": "tsc",
"format": "prettier . -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn lint --fix",
"test": "FIRESTORE_EMULATOR_HOST='localhost:8080' NODE_ENV=test jest --config ./jest.config.ts",
"test:ci": "firebase emulators:exec --project $PROJECT_ID 'yarn test'",
"emulators:start": "yarn build && firebase emulators:start"
},
"dependencies": {
"apollo-datasource": "3.3.2",
"dataloader": "2.2.2",
"firebase-admin": "11.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@firebase/rules-unit-testing": "1.3.16",
"@types/jest": "29.2.5",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"apollo-server-testing": "2.25.3",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "8.0.3",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"prettier": {
"semi": true,
"printWidth": 120,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "prettier ./src -c"
}
},
"lint-staged": {
"**/*.ts": [
"eslint --fix"
]
}
}