forked from yagoluiz/consultaplaca-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 962 Bytes
/
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
{
"name": "consultaplaca-api",
"version": "1.0.0",
"description": "API para consulta de veículo através do SINESP (Sistema Nacional de Informações de Segurança Pública)",
"main": "server.js",
"scripts": {
"start": "node ./bin/server.js",
"dev": "nodemon ./bin/server.js",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yagoluiz/consultaplaca-api.git"
},
"keywords": [],
"author": "Yago Luiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/yagoluiz/consultaplaca-api/issues"
},
"homepage": "https://github.com/yagoluiz/consultaplaca-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"simple-node-logger": "^18.12.24",
"sinesp-api": "^1.5.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^1.19.4"
}
}