-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "firelens-datajet",
"version": "0.1.0",
"type": "module",
"description": "Route test data to Fluent Bit flexibly",
"main": "firelens-datajet.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/firelens-datajet.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"start": "tsc --build; node ./dist/app.js",
"build": "tsc --build",
"clean": "tsc --build --clean",
"generate-access-token": "node -e \"console.log('ACCESS_TOKEN=' + require('crypto').randomBytes(256).toString('base64') + '\\n');\"",
"generate-env": "node -e \"console.log(JSON.stringify(JSON.parse(require('fs').readFileSync('firelens-datajet.json'))).replace('\\\"', '\\\\\"'))\""
},
"author": "falamatt@amazon.com",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.13",
"@types/mustache": "^4.1.2",
"aws-sdk": "^2.1364.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"fluent-logger": "^3.4.1",
"fs-reverse": "^0.0.3",
"highwayhash": "^3.1.1",
"mustache": "^4.2.0",
"node-fetch": "^3.3.0",
"simple-git": "^3.5.0",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/node": "^16.11.1",
"typescript": "^4.4.4"
}
}