forked from RAnLabNL/RAnLab-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
52
53
{
"name": "@ranlab/api",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"description": "API for the RAnLab app",
"main": "build/index.js",
"scripts": {
"build": "tsc --project .",
"build-prod": "tsc ./src --project .",
"test": "dev/test",
"jest": "jest",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RAnLabNL/RAnLab-api.git"
},
"bugs": {
"url": "https://github.com/RAnLabNL/RAnLab-api/issues"
},
"homepage": "https://github.com/RAnLabNL/RAnLab-api#readme",
"engines": {
"node": ">=12"
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.13.6",
"@google-cloud/firestore": "^4.9.9",
"@types/hashring": "^3.2.1",
"@types/node": "^12.12.67",
"@types/node-fetch": "^2.5.8",
"body-parser": "^1.19.0",
"fastify": "^3.5.1",
"fastify-auth0-verify": "^0.4.2",
"fastify-authz-jwks": "^1.1.11",
"fastify-cors": "^5.1.0",
"fastify-jwt": "^2.1.3",
"fastify-sensible": "^3.1.0",
"fastify-swagger": "^4.0.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.0",
"jwt-decode": "^3.1.2",
"node-fetch": "^2.6.1",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"baretest": "^2.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typemoq": "^2.1.0"
}
}