-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.93 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.93 KB
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
{
"name": "@reefguide/web-api",
"version": "0.1.2",
"description": "REST API to support ReefGuide AIMS.",
"type": "module",
"scripts": {
"start": "env-cmd tsx src/index.ts",
"start-build": "env-cmd node build/src/index.js",
"watch": "tsc -w",
"dev": "env-cmd tsx watch src/index.ts",
"preapi": "env-cmd tsx scripts/waitForPort.ts",
"api": "env-cmd tsx src/index.ts",
"build": "tsup src/index.ts --format esm --out-dir build/src --no-splitting --sourcemap",
"lint": "gts lint",
"test": "vitest run",
"type-check": "tsc --noEmit",
"format:write": "prettier --write \"{src,test}/**/*.{ts,js,json,html,scss,md}\" \"!**/node_modules/**\" \"!**/dist/**\"",
"format:check": "prettier --check \"{src,test}/**/*.{ts,js,json,html,scss,md}\" \"!**/node_modules/**\" \"!**/dist/**\"",
"clean": "gts clean",
"fix": "gts fix",
"local-keys": "tsx scripts/localKeys.ts",
"start-web-api-docker": "tsx src/index.ts",
"sourcemaps": "tsup src/index.ts --format esm --out-dir build/src --no-splitting --sourcemap && ./node_modules/@sentry/cli/bin/sentry-cli sourcemaps inject build/src && ./node_modules/@sentry/cli/bin/sentry-cli --url ${SENTRY_URL} sourcemaps --org none --project none upload build/src/"
},
"keywords": [],
"author": "AIMS",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-ec2": "catalog:",
"@aws-sdk/client-ecs": "catalog:",
"@aws-sdk/client-s3": "catalog:",
"@aws-sdk/s3-request-presigner": "catalog:",
"@cloudcomponents/cdk-static-website": "catalog:",
"@codegenie/serverless-express": "^4.16.0",
"@maphubs/tokml": "^0.6.1",
"@reefguide/db": "workspace:*",
"@reefguide/types": "workspace:*",
"@sentry/node": "catalog:",
"aws-cdk-lib": "catalog:",
"axios": "catalog:",
"bcrypt": "^6.0.0",
"constructs": "catalog:",
"cors": "^2.8.6",
"dotenv": "catalog:",
"env-cmd": "^10.1.0",
"express": "catalog:",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^8.5.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.3",
"jwt-decode": "^4.0.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"node-cron": "^4.1.1",
"nodemailer": "^8.0.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"source-map-support": "catalog:",
"winston": "^3.17.0",
"zod": "catalog:",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@aws-sdk/client-secrets-manager": "catalog:",
"@sentry/cli": "catalog:",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/express": "catalog:",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.0",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"supertest": "^7.2.2",
"tsup": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}