-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "adapcon-utils-js",
"version": "1.7.0",
"description": "Utils library for Javascript",
"keywords": [],
"author": {
"name": "Adapcon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adapcon-team/adapcon-utils-js.git"
},
"bugs": {
"url": "https://github.com/adapcon-team/adapcon-utils-js/issues"
},
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"start": "node -r dotenv/config dist/main",
"dev": "ts-node-dev --respawn --transpile-only --clear -r dotenv/config --inspect=0.0.0.0:9229 src/main",
"clean": "rimraf build",
"build": "run-p build:*",
"build:main": "npm run clean && tsc -p tsconfig.main.json",
"build:module": "npm run clean && tsc -p tsconfig.module.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm t -- --watch",
"test:staged": "npm t -- --findRelatedTests",
"test:coverage": "npm t -- --coverage"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.496.0",
"@aws-sdk/client-lambda": "^3.496.0",
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/client-secrets-manager": "^3.496.0",
"@aws-sdk/client-ses": "^3.496.0",
"@aws-sdk/lib-dynamodb": "^3.496.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"axios": "^1.7.5",
"json-bigint": "^1.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@aws-sdk/types": "^3.496.0",
"@types/aws-lambda": "^8.10.85",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"git-commit-msg-linter": "^3.2.8",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.2.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=20.x"
}
}