-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "rocketseat-fastfeet-api",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/mCodex/rocketseat-fastfeet-api.git",
"author": "Mateus Andrade <mat.andrade@live.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nodemon src/index.js",
"dev:debug": "nodemon --inspect src/index.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3",
"uuid": "^3.4.0",
"yup": "^0.28.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"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-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"sequelize-cli": "^5.5.1",
"sucrase": "^3.12.1"
}
}