-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "cowin-verify-api",
"version": "0.1.0",
"main": "dist/index.js",
"repository": "https://github.com/data-peace/cowin-verify-api.git",
"author": "Dev Team <dev@datapeace.in>",
"license": "MIT",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts && npm run lint",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"start": "node dist/index.js",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect src/index.ts",
"watch-node": "nodemon --inspect dist/index.js",
"watch-ts": "tsc -w",
"watch": "concurrently \"npm run watch-ts\" \"npm run watch-node\" "
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/busboy": "^0.2.4",
"@types/eslint": "^7.2.13",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.5.11",
"@types/pino": "^6.3.9",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"concurrently": "^6.2.0",
"eslint": "^7.30.0",
"nodemon": "^2.0.9",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/fastify-cors": "^2.1.0",
"canvas": "^2.8.0",
"crypto-ld": "^3.7.0",
"fastify": "^3.18.1",
"fastify-cors": "^6.0.2",
"fastify-multipart": "^4.0.7",
"jsonld": "^2.0.2",
"jsonld-signatures": "^6.0.0",
"jszip": "^3.6.0",
"node-fetch": "^2.6.1",
"pdf2pic": "^2.0.0",
"pino": "^6.12.0",
"security-context": "^4.0.0",
"vaccination-context": "^1.0.8",
"zbar.wasm": "^2.0.3"
}
}