-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"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",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"ignore": ["server/models/*.json"]
},
"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": {
"ejs": "^3.1.5",
"express": "^4.17.1"
},
"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",
"morgan": "^1.10.0",
"nodemon": "^2.0.6"
}
}