-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "collaborator-contract-processor",
"version": "1.0.0",
"main": "main.js",
"license": "MIT",
"author": "thisoverride",
"description": "",
"scripts": {
"build": "yarn install --production --modules-folder ./build/node_modules && tsc",
"dev": "ts-node-dev ./src/tests/main.test.ts",
"dev-ex": "ts-node-dev ./src/main.ts",
"prod": "node ./build/main.js",
"unit": "jest",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "yarn build && yarn unit"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"@types/jest": "^29.4.4",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.315.0",
"@aws-sdk/client-sns": "^3.319.0",
"@aws-sdk/client-sqs": "^3.316.0",
"@types/parquetjs": "^0.10.6",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1330.0",
"csvtojson": "^2.0.10",
"dotenv": "^16.3.1",
"esbuild": "^0.17.11"
}
}