forked from askmon/jwt-rocketseat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "jwt-rs",
"version": "1.0.0",
"description": "Repositório do Workshop de JWT para a Rocketseat",
"main": "index.js",
"scripts": {
"start": "npm run sequelize:migrate && node src/index.js",
"dev": "NODE_ENV=dev nodemon --inspect=0.0.0.0 src/index.js",
"lint": "eslint ./src ./config --ext .json --ext .js --fix",
"sequelize:migrate": "sequelize db:migrate --env database"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askmon/jwt-rocketseat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/askmon/jwt-rocketseat/issues"
},
"homepage": "https://github.com/askmon/jwt-rocketseat#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"pg": "^7.14.0",
"pg-hstore": "^2.3.3",
"ramda": "^0.26.1",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}