-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.62 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
{
"name": "container-supported-development",
"version": "1.0.0",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --inspect src/index.js --ignore dev",
"dev-container": "nodemon src/index.js",
"prettier": "prettier --write \"**/*.js\"",
"prettier-check": "prettier --check \"**/*.js\"",
"test": "DEBUG=testcontainers* NODE_OPTIONS=--dns-result-order=ipv4first jest --detectOpenHandles",
"unit-test": "jest --detectOpenHandles --testPathIgnorePatterns \"test/integration/.*\\.spec\\.js\"",
"integration-test": "DEBUG=testcontainers* NODE_OPTIONS=--dns-result-order=ipv4first jest \"test/integration/.*\\.spec\\.js\" --detectOpenHandles",
"test-watch": "NODE_OPTIONS=--dns-result-order=ipv4first jest --watch \"test/**/*.spec.js\" --detectOpenHandles",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.651.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"kafkajs": "^2.2.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "v2",
"node-postgres": "^0.6.2",
"pg": "^8.13.0"
},
"devDependencies": {
"@testcontainers/kafka": "^10.15.0",
"@testcontainers/localstack": "^10.15.0",
"@testcontainers/postgresql": "^10.15.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "^3.4.0",
"testcontainers": "^10.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}