-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "stellopay-backend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.29.3",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --quiet",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check:env": "tsx scripts/check-env-sync.ts",
"check:migrations": "tsx scripts/lint-migrations.ts",
"prestart": "pnpm build",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"mutation:test": "stryker run",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"test:load": "tsx scripts/load/rate-limit-soak.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-rate-limit": "^8.6.2",
"freebuff": "^0.0.142",
"helmet": "^8.3.0",
"ioredis": "^5.11.1",
"nodemailer": "^9.0.4",
"pg": "^8.13.1",
"pino": "^10.3.1",
"starknet": "^10.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/autocannon": "^7.12.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^6.0.0",
"@types/node": "^26.1.2",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.20.4",
"@types/supertest": "^7.2.1",
"@vitest/coverage-v8": "^3.2.4",
"autocannon": "^7.15.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.8.0",
"prettier": "^3.9.6",
"supertest": "^7.2.2",
"tsx": "^4.23.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.66.0",
"vitest": "^3.2.4"
}
}