-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.37 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
{
"scripts": {
"test:teardown": "docker-compose -f tests/kafka.yml down -v --remove-orphans && docker-compose -f tests/soluto-kafka.yml down -v --remove-orphans ",
"test:setup": " docker-compose -f tests/kafka.yml up -d && sleep 50 && docker-compose -f tests/soluto-kafka.yml up --build -d",
"test:start": "jest --runInBand --forceExit --config tests/jest.config.local.js --testResultsProcessor jest-teamcity-reporter",
"test": "npm run test:teardown && npm run test:setup && sleep 50 && npm run test:start && npm run test:teardown",
"format": "prettier --write '**/*.{ts,js,json,java}'",
"logs": "docker-compose -f tests/soluto-kafka.yml logs"
},
"dependencies": {
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.149",
"@types/node": "^11.13.8",
"@types/node-fetch": "^2.5.2",
"@types/uuid": "^3.4.4",
"delay": "^4.2.0",
"jest": "^24.9.0",
"jest-cli": "^24.7.1",
"jest-teamcity-reporter": "^0.9.0",
"kafka-node": "4.1.3",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"simple-fake-server-server-client": "^2.0.1",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"husky": "^3.1.0",
"prettier": "^1.19.1",
"prettier-plugin-java": "^0.5.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && git add ."
}
}
}