-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 942 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": "bootcamp-gostack-desafio-02",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:Sobral/bootcamp-gostack-desafio-02.git",
"author": "Luciano Sobral <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"sequelize-cli": "^5.5.1",
"sucrase": "^3.12.1"
},
"scripts": {
"dev": "nodemon src/server.js",
"dev:debug": "nodemon --inspect src/server.js",
"lint": "eslint --fix src --ext .js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"busca-cep": "^0.5.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3",
"yup": "^0.28.1"
}
}