-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 764 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
{
"name": "api_qr_code",
"version": "1.0.0",
"description": "Esse é um microserviço para geração de QR Code",
"main": "index.js",
"scripts": {
"start": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"author": "Vinicius M. Finger",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/mocha": "^8.0.4",
"mocha": "^8.2.1",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/qr-image": "^3.2.3",
"@types/qrcode": "^1.3.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"qr-image": "^3.2.0"
}
}