-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
60
61
{
"name": "challengech5",
"version": "1.0.0",
"description": "Binar Academy Full Stack Web Development Challenge Chapter 5 - Migrating to Node.js",
"main": "app.js",
"scripts": {
"start": "nodemon server/app --exec babel-node",
"lint:fix": "eslint server/ --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"db:migrate": "sequelize db:migrate",
"db:seed:all": "sequelize db:seed:all --debug",
"db:migrate:refresh": "sequelize db:migrate:undo:all && sequelize db:migrate",
"db:refresh:all": "sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all --debug"
},
"nodemonConfig": {
"ignore": [
""
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinlaurente/binar-challengech5.git"
},
"keywords": [
"nodejs",
"expressjs"
],
"author": "Alvin Laurent Ertanto",
"license": "ISC",
"bugs": {
"url": "https://github.com/alvinlaurente/binar-challengech5/issues"
},
"homepage": "https://github.com/alvinlaurente/binar-challengech5#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"sequelize-cli": "^6.2.0"
}
}