-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "@apillon/lib",
"version": "2.1.0",
"description": "Apillon miscellaneous code library",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"author": "Apillon",
"license": "GNU GPL V3",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --declarationMap",
"dev": "tsc -w --declarationMap --preserveWatchOutput",
"test:unit": "jest --passWithNoTests",
"lint": "tsc && eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"devDependencies": {
"eslint-config-common": "*",
"tsconfig": "*"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.637.0",
"@aws-sdk/client-lambda": "^3.518.0",
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/client-secrets-manager": "^3.515.0",
"@aws-sdk/client-sqs": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@rawmodel/core": "^3.3.4",
"@rawmodel/parsers": "^3.3.4",
"@rawmodel/validators": "^3.3.4",
"axios": "^1.6.8",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongodb": "6.5.0",
"mysql2": "^3.9.7",
"redis": "^4.6.13",
"saslprep": "^1.0.3",
"sqlstring": "^2.3.3",
"ts-mysql-migrate": "^1.1.2",
"uuid": "^9.0.1"
}
}