-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "etl-daily",
"version": "0.0.1",
"description": "ETL",
"scripts": {
"analyse": "npm run lint && npm run test",
"clean": "rimraf .build .serverless .nyc_output coverage",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "npm run clean && npm run lint",
"build": "serverless package",
"predeploy": "npm run clean && npm run lint",
"deploy": "serverless deploy --verbose",
"lint": "eslint --fix . --ext .ts src",
"start": "serverless offline start",
"start:debug": "SLS_DEBUG=* node --inspect ./node_modules/serverless/bin/serverless offline -s dev",
"pretest": "npm run clean",
"test": "nyc mocha --config ./test/.mocharc.yml",
"test:integration": "mocha --config ./test/integration/.mocharc.yml"
},
"keywords": [
"aws",
"lambda",
"serverless",
"eslint",
"typescript",
"etl"
],
"author": "Inguelberth Garcia",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.27",
"@types/chai": "^4.1.7",
"@types/json-schema": "^7.0.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/object-hash": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^6.2.0",
"nyc": "^14.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"serverless": "^1.69.0",
"serverless-deployment-bucket": "^1.1.2",
"serverless-dotenv-plugin": "^2.3.2",
"serverless-iam-roles-per-function": "^2.0.2",
"serverless-offline": "^8.3.1",
"serverless-plugin-reducer": "^3.2.3",
"serverless-plugin-typescript": "^1.1.9",
"serverless-pseudo-parameters": "^2.5.0",
"source-map-support": "^0.5.12",
"ts-mockito": "^2.4.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@azure/storage-blob": "^12.8.0",
"@fast-csv/format": "^4.3.0",
"@fast-csv/parse": "^4.3.6",
"@google-cloud/bigquery": "^5.5.0",
"@types/bluebird": "^3.5.36",
"@types/http-codes": "^1.0.1",
"@types/jenkins": "^0.23.1",
"@types/lodash": "^4.14.149",
"@types/node-xlsx": "^0.15.0",
"@types/s3-upload-stream": "^1.0.2",
"aws-sdk": "^2.510.0",
"bent": "^7.3.10",
"bfj": "^7.0.2",
"bfj-collections": "^1.0.5",
"bluebird": "^3.7.2",
"csvtojson": "^2.0.10",
"dayjs": "^1.8.29",
"got": "^11.8.1",
"jenkins": "^0.28.0",
"linq": "^3.2.2",
"lodash": "^4.17.15",
"log4js": "^6.1.2",
"mingo": "^4.1.0",
"object-hash": "^2.0.3",
"s3-upload-stream": "^1.0.7"
}
}