-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.25 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
90
91
92
93
94
95
96
{
"name": "fimidara-server-node",
"version": "0.1.0",
"description": "fimidara file storage service server Node.js",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"license": "MIT",
"keywords": [],
"type": "module",
"engines": {
"node": ">=13",
"npm": ">=10"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "npm run clean && tsc",
"fix": "gts fix",
"start": "node build/src/index.js",
"pretest": "npm run compile",
"prod": "tsc && env-cmd -f \".env.prod\" npm start",
"dev": "tsc && env-cmd -f \".env.dev\" npm start",
"test": "env-cmd -f \".env.unit-test\" vitest --config ./vitest.config.ts",
"fn-test": "env-cmd -f \".env.unit-test\" vitest --config ./vitest.fn.config.ts",
"integration-test": "env-cmd -f \".env.integration-test\" vitest --config ./vitest.config.ts",
"dev-for-test": "tsc && env-cmd -f \".env.unit-test\" npm start",
"check-circular-deps": "npx dpdm --no-warning --no-tree ./src/index.ts",
"gen-rest-api": "env-cmd -f \".env.dev\" npx tsx src/mddoc/restApiGen.ts",
"gen-js-sdk": "env-cmd -f \".env.dev\" npx tsx src/mddoc/jsSdkCodeGen.ts",
"dev-mongo-rs": "npx run-rs --host localhost --portStart 27000 --dbpath dev-mongo-rs-data --keep",
"test-mongo-rs": "npx run-rs --host localhost --portStart 27005 --dbpath test-mongo-rs-data",
"render-email-templates": "env-cmd -f \".env.dev\" npx tsx src/tools/email-templates/index.ts",
"sdk-test-setup": "npx env-cmd -f \".env.unit-test\" npx tsx src/tools/sdk-test-setup/index.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.705.0",
"@aws-sdk/client-secrets-manager": "^3.465.0",
"@aws-sdk/client-sesv2": "^3.52.0",
"@aws-sdk/lib-storage": "^3.705.0",
"@sesamecare-oss/redlock": "^1.3.1",
"argon2": "^0.40.1",
"busboy": "^1.6.0",
"config": "^3.3.9",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^8.3.0",
"fs-extra": "^11.1.0",
"ioredis": "^5.4.1",
"joi": "^17.9.2",
"js-accessor": "^1.1.0",
"jsonwebtoken": "^9.0.2",
"lodash-es": "^4.17.21",
"mongoose": "^8.1.2",
"nanoid": "^5.0.7",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.1",
"safe-stable-stringify": "^2.3.1",
"sharp": "^0.32.6",
"softkave-js-utils": "^0.8.2",
"stripe": "^8.222.0",
"tsyringe": "^4.8.0",
"type-fest": "^4.17.0",
"validator": "^13.5.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/busboy": "^1.5.4",
"@types/config": "^3.3.3",
"@types/cors": "^2.8.12",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.9",
"@types/faker": "^5.5.9",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/lodash-es": "^4.17.12",
"@types/multer": "^1.4.5",
"@types/node": "^22.10.2",
"@types/sharp": "^0.26.1",
"@types/validator": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"env-cmd": "^10.1.0",
"expect-type": "^0.19.0",
"gts": "^5.3.0",
"inquirer": "^9.2.15",
"typescript": "^5.3.3",
"vitest": "^1.5.3"
}
}