forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "functions",
"scripts": {
"lint": "eslint \"src/**/*\"",
"build": "tsc",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "18"
},
"main": "lib/index.js",
"dependencies": {
"@apollo/client": "^3.6.9",
"@firebase/app-compat": "^0.2.3",
"@firebase/app-types": "^0.9.0",
"@google-cloud/firestore": "^4.8.0",
"@google-cloud/pubsub": "^2.18.1",
"@notionhq/client": "^1.0.4",
"@types/algoliasearch": "^3.34.11",
"algoliasearch": "^4.8.3",
"axios": "^0.27.2",
"cloudinary": "^1.23.0",
"cross-fetch": "^3.1.5",
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.21.2",
"googleapis": "^89.0.0",
"graphql": "^16.6.0",
"gray-matter": "^4.0.3",
"node-fetch": "^2.6.7",
"notion-to-md": "^2.3.4",
"octokit": "^2.0.14",
"slugify": "^1.5.0",
"twitter-api-v2": "^1.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/uuid": "^8.3.0",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"firebase-functions-test": "^0.2.0",
"typescript": "^4.5.4"
},
"private": true
}