-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 947 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
32
{
"name": "graphql-api",
"version": "1.0.0",
"description": "A simple API with GraphQL, Apollo Server, MongoDB and Mongoose",
"main": "src/index.ts",
"repository": "git@github.com:ramonxm/graphql-api.git",
"author": "Ramon <ramon1234rxm@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "npx nodemon --exec ts-node --files src/index.ts -e ts,gql"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"apollo-server": "^3.8.1",
"graphql": "^16.5.0",
"graphql-subscriptions": "^2.0.0",
"mongoose": "^6.3.4"
}
}