-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "nodejs.serverless.rest.graphql.boilerplate",
"version": "1.0.0",
"description": "boilerplate of a serverless application using nodejs, with REST and GraphQL protocols",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --watch 'src/**' --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/server.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cyber-Psilocybin-Institute/nodejs.serverless.rest.graphql.boilerplate.git"
},
"keywords": [
"nodejs",
"express",
"rest",
"graphql",
"typescript"
],
"author": "Cyber Psilocybin Institute",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Cyber-Psilocybin-Institute/nodejs.serverless.rest.graphql.boilerplate/issues"
},
"homepage": "https://github.com/Cyber-Psilocybin-Institute/nodejs.serverless.rest.graphql.boilerplate#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.1",
"@graphql-tools/schema": "^8.3.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"mongoose": "^6.2.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0"
}
}