-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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": "2021-kafka-event-forwarder-nodejs",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "nodemon -r dotenv/config index.js dotenv_config_path=.env.local",
"format": "prettier **/*.js --write",
"start": "node index.js",
"test": "tape test/**.js"
},
"keywords": [],
"author": "Evan Shortiss <evanshortiss@gmail.com> (https://evanshortiss.com)",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.js\""
}
},
"prettier": {
"trailingComma": "none",
"singleQuote": true
},
"devDependencies": {
"@types/node": "~14.14.32",
"dotenv": "~8.2.0",
"got": "~11.8.2",
"husky": "~4.3.8",
"nodemon": "~2.0.7",
"prettier": "~2.2.1",
"pretty-quick": "~3.1.0",
"proxyquire": "~2.1.3",
"sinon": "~9.2.4",
"tape": "~5.2.2"
},
"dependencies": {
"cloudevents": "~4.0.0",
"env-var": "~7.0.0",
"kafkajs": "~1.15.0",
"pino": "^6.11.1"
}
}