-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 835 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 835 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
27
28
29
30
31
{
"name": "functions",
"description": "Google Cloud Functions for GraphQL API using Node.js, Express.j, MongoDB and Apollo Server",
"author": "Brian Ramirez <brianramirez482@gmail.com> (https://github.com/brianr482/)",
"scripts": {
"start": "npx @google-cloud/functions-framework --target=graphql",
"start:dev": "npm-watch start",
"db:seed": "node db/seeders/mock-data.seeder.js"
},
"engines": {
"node": "18"
},
"watch": {
"start": "*.js"
},
"main": "index.js",
"dependencies": {
"@apollo/server": "^4.9.4",
"@faker-js/faker": "^8.2.0",
"@google-cloud/functions-framework": "^3.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"mongodb": "^6.2.0"
},
"private": true,
"type": "module",
"devDependencies": {
"npm-watch": "^0.11.0"
}
}