-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.91 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
{
"name": "microsoft-smtp-oauth2-proxy",
"description": "A simple SMTP server with basic authentication that proxies to Microsoft SMTP server with OAuth2 authentication",
"author": "Oldřich Jedlička",
"license": "BSD-2-Clause",
"version": "1.3.2",
"private": true,
"type": "module",
"workspaces": [
"packages/common",
"packages/lib",
"packages/server",
"packages/ui"
],
"scripts": {
"dev": "npm run dev --workspace packages/ui",
"test": "node --conditions=development --experimental-vm-modules --disable-warning=ExperimentalWarning node_modules/jest/bin/jest.js --colors --verbose --detectOpenHandles --workerThreads",
"build": "cross-env NODE_ENV=production npm run build --workspaces --if-present",
"pack": "npm pack --workspace packages/common && npm pack --workspace packages/lib && npm pack --workspace packages/server",
"build:release": "node --import=@swc-node/register/esm-register --enable-source-maps ./build.ts",
"clean": "npm run clean --workspaces --if-present && rimraf ./dist",
"analyze": "cross-env ANALYZE=true node --import=@swc-node/register/esm-register --enable-source-maps ./build.ts",
"lint": "eslint",
"test-send-auth": "npm run --workspace packages/server test-send-auth",
"test-send-db": "npm run --workspace packages/server test-send-db"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^16.2.6",
"@swc-node/jest": "^1.9.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "1.15.33",
"@swc/helpers": "^0.5.21",
"@swc/types": "^0.1.26",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.4",
"@vercel/nft": "^1.5.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"fs-extra": "^11.3.5",
"jest": "^30.4.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
}
}