-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 982 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
{
"name": "todo-api",
"version": "1.0.0",
"description": "Simple REST API for serving a TODO application",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --bail --verbose",
"test:watch": "jest --passWithNoTests --watchAll --runInBand --bail",
"test:db": "docker-compose -f docker-compose.test.yml up"
},
"jest": {
"modulePathIgnorePatterns": [
".pgdata",
"__tests__/utils"
]
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.2.1",
"supertest": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkarolyi/todo-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidkarolyi/todo-api/issues"
},
"homepage": "https://github.com/davidkarolyi/todo-api#readme"
}