-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
{
"name": "blog-api",
"version": "1.0.0",
"description": "The backend for my Blog",
"main": "index.js",
"dependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/node": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.8",
"@babel/register": "^7.13.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mailgen": "^2.0.14",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0",
"sequelize-cli": "^6.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7"
},
"scripts": {
"dev": "nodemon --exec babel-node src ",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"seed": "npm run migrate:undo && npm run migrate && npx sequelize-cli db:seed:all",
"seed:test": "cross-env NODE_ENV=test npm run seed",
"build": "babel ./src --out-dir build",
"start": "npm run seed && npm run build && node build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mansurissa/blog-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mansurissa/blog-api/issues"
},
"homepage": "https://github.com/mansurissa/blog-api#readme"
}