-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "never-ending-story",
"version": "0.0.1",
"description": "Team Challenge - Team 2 - Cody, Lee, Rodrigo and Kerry - Week 2, Manaia 2021",
"main": "index.js",
"author": "EDA",
"license": "ISC",
"scripts": {
"start": "node index.js",
"dev": "nodemon index --ignore data.json",
"lint": "eslint .",
"test": "jest --watchAll"
},
"homepage": "https://github.com/dev-academy-challenges/pupparazzi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-academy-challenges/pupparazzi.git"
},
"bugs": {
"url": "https://github.com/dev-academy-challenges/pupparazzi/issues"
},
"eslintConfig": {
"extends": "eda"
},
"jest": {
"watchPathIgnorePatterns": [
"data.json"
]
},
"dependencies": {
"check-word": "^1.1.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.4",
"node-popup": "^0.1.14",
"popups": "^1.1.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-eda": "0.1.4",
"eslint-plugin-import": "^2.24.0",
"jest": "^26.0.1",
"nodemon": "^2.0.12",
"supertest": "^4.0.2"
}
}