-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.52 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.52 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
{
"name": "jamcore",
"version": "1.0.0",
"description": "Backend for a jam site",
"main": "dist/main.js",
"type": "module",
"license": "MIT",
"packageManager": "npm@10",
"engines": {
"node": ">=24.14.0",
"npm": ">=10"
},
"scripts": {
"dev": "tsx watch main.ts",
"build": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json --noCheck && tsc-alias -p tsconfig.build.json --resolve-full-paths && node -e \"const fs=require('node:fs');fs.mkdirSync('dist/contracts',{recursive:true});fs.copyFileSync('contracts/api-registry.json','dist/contracts/api-registry.json')\"",
"start": "node --enable-source-maps dist/main.js",
"test": "vitest run tests",
"test:watch": "vitest --watch tests",
"typecheck": "tsc --noEmit -p tsconfig.json",
"generate:sdk": "node scripts/generate-sdk.mjs",
"check:migrations": "node scripts/check-migration-safety.mjs",
"check:api-contract": "node scripts/check-api-contract.mjs",
"check:query-plans": "node scripts/check-query-plans.mjs",
"search:backfill": "tsx scripts/backfill-search.ts",
"search:loadtest": "node scripts/loadtest-search.mjs",
"seed-users": "tsx prisma/seedUsers.ts",
"seed-suggestions": "tsx prisma/seedSuggestions.ts",
"seed-slaughter-votes": "tsx prisma/seedSlaughterVotes.ts",
"seed-voting": "tsx prisma/seedVoting.ts"
},
"keywords": [],
"author": "",
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@types/bcrypt": "^6.0.0",
"@types/bytes": "^3.1.5",
"@types/chroma-js": "^3.1.2",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.3.5",
"@types/node-cron": "^3.0.11",
"prisma": "^6.19.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1003.0",
"@internationalized/date": "^3.12.0",
"@prisma/client": "^6.19.2",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"bytes": "^3.1.2",
"chroma-js": "^3.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"node-cron": "^4.2.1",
"redis": "^5.12.1",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
}
}