-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.85 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.85 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
{
"name": "boundless-backend",
"version": "1.0.0",
"description": "Backend for Boundless project with comprehensive authentication system",
"type": "module",
"main": "src/server.ts",
"scripts": {
"start": "tsx src/server.ts",
"dev": "nodemon --exec \"tsx\" src/server.ts",
"build": "tsc && mkdir -p dist/templates && cp src/templates/*.html dist/templates/",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "if [ \"$RENDER\" != \"true\" ]; then husky install; fi",
"format": "prettier --write \"src/**/*.ts\"",
"migrate:trustless-work": "tsx scripts/migrate-trustless-work.ts",
"test:trustless-work": "tsx scripts/run-trustless-tests.ts",
"test:email": "tsx test-email.ts",
"seed:blog": "tsx src/seed-blog.ts",
"seed:waitlist": "tsx src/seed-waitlist.ts",
"test:waitlist": "tsx src/test-waitlist-seed.ts",
"migrate:comments-posted": "tsx src/migrations/add-comments-posted-field.ts",
"seed:hackathon-participants": "tsx src/scripts/seed-hackathon-participants.ts",
"seed:hackathon-companies": "tsx src/scripts/seed-hackathon-companies.ts",
"cleanup:orphaned-data": "tsx scripts/cleanup-all-orphaned-data.ts",
"cleanup:orphaned-data:dry-run": "tsx scripts/cleanup-all-orphaned-data.ts --dry-run",
"cleanup:user-data": "tsx scripts/cleanup-orphaned-user-data.ts",
"fix:sessions": "tsx scripts/fix-sessions-issue.ts",
"fix:sessions:cleanup": "tsx scripts/cleanup-null-sessions.ts",
"fix:sessions:index": "tsx scripts/fix-sessions-index.ts",
"admin:create-super": "tsx scripts/create-super-admin.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@better-auth/passkey": "^1.4.3",
"@stellar/stellar-sdk": "^14.2.0",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.17",
"@types/dompurify": "^3.0.5",
"@types/express": "^5.0.1",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.9",
"@types/marked": "^5.0.2",
"@types/morgan": "^1.9.10",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.14",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"better-auth": "^1.4.3",
"cloudinary": "^2.6.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dompurify": "^3.2.6",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"google-auth-library": "^9.15.1",
"helmet": "^8.1.0",
"jsdom": "^26.1.0",
"jsonwebtoken": "^9.0.2",
"marked": "^15.0.12",
"mongodb": "^7.0.0",
"mongoose": "^8.13.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"node-cron": "^4.1.1",
"nodemailer": "^7.0.11",
"soroban-client": "^1.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.9",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/jest": "^29.5.14",
"@types/mongodb-memory-server": "^1.8.0",
"@types/mongoose": "^5.11.96",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-extended": "^5.0.3",
"lint-staged": "^15.5.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.4",
"tsx": "^4.20.6",
"typescript": "^5.8.2"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}