-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.15 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
83
84
85
86
87
88
89
90
{
"name": "mail-capture",
"version": "1.0.14",
"description": "",
"scripts": {
"start": "node --env-file .env dist/src/index.js",
"start:validation-worker": "node --env-file .env dist/src/validation-worker-main.js",
"start:scraper-worker": "node --env-file .env dist/src/scraper-worker-main.js",
"preview": "npm run build && node --env-file .env dist/src/index.js",
"dev": "tsx --watch --env-file .env.development src/index.ts",
"dev:validation-worker": "tsx --watch --env-file .env.development src/validation-worker-main.ts",
"dev:scraper-worker": "tsx --watch --env-file .env.development src/scraper-worker-main.ts",
"dev:staging": "tsx --watch --env-file .env.staging src/index.ts",
"dev:prod": "tsx --watch --env-file .env.production src/index.ts",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky",
"gen:types": "npx -y supabase gen types typescript --project-id uqxdkjeuavjnbsysotsb --schema public > ./src/shared/infrastructure/types/supabase.ts",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org mail-capture --project node-express ./dist && sentry-cli sourcemaps upload --org mail-capture --project node-express ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pool1541/mail-capture.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pool1541/mail-capture/issues"
},
"homepage": "https://github.com/Pool1541/mail-capture#readme",
"dependencies": {
"@aws-sdk/client-sqs": "^3.862.0",
"@azure/msal-node": "^3.5.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@sentry/cli": "^2.58.4",
"@sentry/node": "^10.30.0",
"@supabase/supabase-js": "^2.50.3",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-session": "^1.18.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"playwright": "^1.52.0",
"resend": "^4.7.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@tsconfig/node22": "^22.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.9",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/eslint-plugin": "^1.1.40",
"@vitest/ui": "^3.1.1",
"eslint": "^9.24.0",
"eslint-plugin-perfectionist": "^4.11.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}