-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 924 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
35
{
"name": "gobarber-api",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/naldomadeira/gobarber-api.git",
"author": "Naldo Madeira <naldomadeira@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server",
"lint": "yarn eslint --fix src --ext .js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"date-fns": "^2.0.0-beta.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.2",
"multer": "^1.4.2",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sequelize-cli": "^6.2.0",
"sucrase": "^3.17.1"
}
}