This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "tour-operator-credits-service",
"version": "0.0.1",
"description": "Cares about the credits which tour operators gives out to users",
"main": "index.js",
"scripts": {
"prettier": "prettier --single-quote --tab-width 4 --write \"{index,src/**/*}.js\"",
"test": "mocha",
"test:watch": "mocha --watch",
"dev:db": "docker run -p 5432:5432 --rm -e POSTGRES_PASSWORD=secret -e TOUR_OPERATOR_CREDITS_USER=tour_operator_credits -e TOUR_OPERATOR_CREDITS_PASSWORD=passw0rd! -e TOUR_OPERATOR_CREDITS_DATABASE=tour_operator_credits $(docker build -q ./database)",
"dev": "concurrently \"npm run dev:db\" \"node-dev index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/holidaycheck/tour-operator-credits-service.git"
},
"keywords": [
"HolidayCheck",
"TourOperator",
"Gutschriften"
],
"author": "HolidayCheck",
"license": "MIT",
"bugs": {
"url": "https://github.com/holidaycheck/tour-operator-credits-service/issues"
},
"homepage": "https://github.com/holidaycheck/tour-operator-credits-service#readme",
"dependencies": {
"body-parser": "^1.19.0",
"body-parser-csv": "^1.0.0",
"bunyan": "1.8.12",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"pg": "^8.0.0",
"pg-copy-streams": "2.2.2",
"supertest": "4.0.2",
"validator": "13.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"concurrently": "5.2.0",
"husky": "4.2.5",
"mocha": "7.1.2",
"node-dev": "^4.0.0",
"prettier": "^2.0.4",
"sinon": "9.0.2",
"sinon-chai": "3.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
}
}