-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "backend",
"module": "src/index.ts",
"scripts": {
"dev": "NODE_ENV=development bun run src/server.ts",
"start": "NODE_ENV=production bun run src/server.ts",
"build": "bun build src/server.ts --outfile dist/server.js --target bun --minify",
"test": "bun test",
"test:ultimate": "bun --env-file=.env run test/ultimate-test.ts",
"db:seed-jobs": "bun --env-file=.env run test/seed-jobs.ts"
},
"type": "module",
"private": true,
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"supertest": "^7.2.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@supabase/supabase-js": "^2.93.3",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^25.1.0",
"agent0-sdk": "^1.4.2",
"axios": "^1.13.4",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"siwe": "^3.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"viem": "^2.45.1"
}
}