-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "ayane",
"version": "1.0.0",
"description": "",
"license": "MIT",
"sideEffects": false,
"type": "module",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"!dist/test"
],
"scripts": {
"artifact": "tsx etc/build_artifact.js",
"build": "tsc",
"check:watch": "tsc --watch",
"clean": "rimraf dist artifact .turbo .serverless",
"dev": "tsx --env-file=.env.development --watch ./src/dev.ts",
"fix": "biome check --write --unsafe .",
"lint": "biome check .",
"test": "vitest"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.658.1",
"@sentry/node": "^7.119.0",
"@sentry/serverless": "^7.114.0",
"@upstash/redis": "^1.34.0",
"hono": "^4.6.3",
"ioredis": "^5.4.1",
"liquidjs": "^10.17.0",
"mysql2": "^3.11.3",
"pg": "^8.13.0",
"remeda": "^2.14.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/aws-lambda": "^8.10.145",
"@types/node": "^22.7.4",
"@types/pg": "^8.11.10",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"serverless": "^3.39.0",
"serverless-scriptable-plugin": "^1.3.1",
"serverless-standalone": "^0.0.7",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"packageManager": "pnpm@9.11.0",
"engines": {
"node": ">=22.0.0"
}
}