-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 922 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 922 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
33
{
"name": "backend-assignment-btcenergy",
"version": "1.0.0",
"description": "Sensorfact back-end developer assignment",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "serverless offline start --httpPort=4000 --host 0.0.0.0 --reloadHandler",
"compile": "tsc -p . --noEmit",
"test": "jest",
"test:watch": "jest --watch --onlyChanged"
},
"dependencies": {
"graphql": "^15.5.1",
"graphql-compose": "^9.0.8",
"graphql-helix": "^1.13.0",
"graphql-request": "^5.0.0",
"graphql-scalars": "^1.18.0",
"lambda-api": "^0.11.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.80",
"@types/node": "14.x",
"@types/serverless": "^3",
"aws-sdk": "^2.952.0",
"esbuild": "^0.15.12",
"jest": "^29.0.2",
"serverless": "^3.23.0",
"serverless-esbuild": "^1.33.0",
"serverless-offline": "^11.1.3",
"typescript": "^4.3.5"
}
}