-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "ecotask-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"test": "jest --passWithNoTests",
"test:coverage": "jest --passWithNoTests --coverage",
"test:integration": "jest --passWithNoTests --testMatch '**/tests/integration/**/*.test.ts'",
"test:e2e": "jest --passWithNoTests --testMatch '**/tests/e2e/**/*.test.ts'",
"db:migrate": "prisma migrate dev",
"db:seed": "ts-node prisma/seed.ts",
"queues:cleanup": "node dist/scripts/cleanupQueueJobs.js",
"queues:verify-retention": "node dist/scripts/verifyQueueRetention.js",
"check:jwt-secret": "jest --runInBand tests/config/jwtSecret.test.ts",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' '*.{json,md,yml}'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' '*.{json,md,yml}'",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"@stellar/stellar-sdk": "^15.1.0",
"bullmq": "^5.0.0",
"cors": "^2.8.5",
"exifreader": "^4.41.0",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"helmet": "^8.3.0",
"image-size": "^2.0.2",
"ioredis": "^5.3.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^20.10.0",
"@types/supertest": "^6.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"prettier": "^3.2.0",
"prisma": "^5.0.0",
"supertest": "^6.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}