-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1023 Bytes
/
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
{
"name": "places-with-faces",
"version": "2.0.0",
"description": "Challenge to learn server side rendering and callbacks",
"main": "index.js",
"author": "EDA",
"license": "ISC",
"scripts": {
"start": "node index",
"dev": "nodemon index --ignore data.json",
"lint": "eslint .",
"test": "jest --watchAll"
},
"homepage": "https://places-and-faces-manaia-21.herokuapp.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-challenges/places-with-faces.git"
},
"bugs": {
"url": "https://github.com/dev-academy-challenges/places-with-faces/issues"
},
"eslintConfig": {
"extends": "eda"
},
"jest": {
"watchPathIgnorePatterns": [
"data.json"
]
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"express": "^4.17.1",
"express-handlebars": "^4.0.4"
},
"devDependencies": {
"eslint": "7.9.0",
"eslint-config-eda": "0.1.4",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}