forked from effect-app/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.9 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.9 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@effect-app-boilerplate/api",
"version": "0.0.1",
"main": "./dist/main.js",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"circular": "pnpm circular:src && pnpm circular:dist",
"circular:src": "madge --circular --ts-config ./tsconfig.json --extensions ts ./src",
"circular:dist": "madge --circular --extensions js ./dist",
"clean": "rm -rf dist test/dist",
"clean-dist": "sh ../scripts/clean-dist.sh",
"build": "pnpm clean-dist && NODE_OPTIONS=--max-old-space-size=8192 tsc --build",
"watch": "pnpm build --watch",
"watch2": "pnpm clean-dist && NODE_OPTIONS=--max-old-space-size=8192 tsc -w",
"compile": "NODE_OPTIONS=--max-old-space-size=8192 tsc --noEmit",
"lint": "NODE_OPTIONS=--max-old-space-size=8192 ESLINT_TS=1 eslint src test",
"lint:watch": "ESLINT_TS=1 esw -w --changed --clear --ext ts,tsx src test",
"autofix": "pnpm lint --fix",
"test": "vitest",
"test:run": "pnpm run test run --passWithNoTests",
"testsuite": "pnpm circular && pnpm run test:run && pnpm lint",
"dev": "NODE_ENV=development nodemon --signal SIGTERM --exec pnpm dev:vite",
"dev:compiled": "bun --inspect ./dist/main.js | ../scripts/humanlog.sh",
"dev:vite": "pnpm start:bun | ../scripts/humanlog.sh",
"start": "pnpm start:bun",
"start:compiled": "node -r source-map-support/register ./dist/main.js",
"start:vite": "vite-node ./src/main.ts",
"start:bun": "bun ./src/main.ts",
"ncu": "ncu",
"extract:i18n": "formatjs extract './**/*.ts' --ignore './**/*.d.ts' --format src/i18n/extraction-formatter.cjs --id-interpolation-pattern '[sha512:contenthash:base64:6]' --out-file src/i18n/extracted/en.json"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./_cjs/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"require": {
"types": "./dist/*.d.ts",
"default": "./_cjs/*.cjs"
}
}
},
"dependencies": {
"@azure/arm-monitor": "^7.0.0",
"@azure/cosmos": "^4.0.0",
"@azure/service-bus": "^7.9.4",
"@azure/storage-blob": "^12.17.0",
"@effect-app/core": "^0.145.0",
"@effect-app/infra": "0.194.0",
"@effect-app/infra-adapters": "^0.132.0",
"effect-app": "^0.172.0",
"@effect/platform": "^0.45.6",
"@effect-app/schema": "^0.196.0",
"@effect/opentelemetry": "^0.31.9",
"@effect/platform-node": "0.44.7",
"@formatjs/cli": "^6.2.7",
"@formatjs/intl": "2.7.2",
"@mollie/api-client": "^3.7.0",
"@opentelemetry/auto-instrumentations-node": "^0.41.1",
"@opentelemetry/context-async-hooks": "^1.21.0",
"@opentelemetry/sdk-node": "^0.48.0",
"@sendgrid/mail": "^8.1.1",
"@sentry/node": "^7.102.0",
"@sentry/opentelemetry": "^7.102.0",
"connect": "^3.7.0",
"cors": "^2.8.5",
"cross-fetch": "^4.0.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"effect": "^2.3.8",
"express": "^4.18.2",
"express-compression": "^1.0.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"fast-check": "^3.15.1",
"jwks-rsa": "2.1.4",
"jwt-decode": "^4.0.0",
"object-hash": "^3.0.0",
"papaparse": "^5.4.1",
"redis": "^3.1.2",
"redlock": "^5.0.0-beta.2",
"redoc": "^2.1.3",
"redoc-express": "^2.1.0",
"shippo": "^1.7.1",
"source-map-support": "^0.5.21",
"stopwatch-node": "^1.1.0",
"swagger-ui-express": "^5.0.0",
"tcp-port-used": "^1.0.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/redis": "^2.8.32",
"@types/shippo": "^1.7.6",
"@types/swagger-ui-express": "^4.1.6",
"eslint-plugin-formatjs": "^4.12.2",
"typescript": "^5.3.3"
}
}