-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "lily-backend",
"version": "1.0.0",
"description": "Production-ready Express backend for Lily Protocol.",
"private": true,
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "rimraf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node dist/server.js",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"check": "npm run lint && npm run typecheck && npm run build && npm run test",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,mjs,json,md}": [
"prettier --write"
],
"*.{ts,js,mjs}": [
"eslint --fix"
]
},
"keywords": [
"stellar",
"express",
"typescript",
"backend",
"ai-agents"
],
"author": "Lily Protocol",
"license": "ISC",
"type": "commonjs",
"packageManager": "npm@11.6.2",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"pino": "^10.0.0",
"pino-http": "^11.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.8.0",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
}
}