-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "jamcore",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">=24.14.0",
"npm": ">=10"
},
"scripts": {
"dev": "npx tsx main.ts",
"build": "tsc -p tsconfig.json --noCheck && node scripts/rewire-aliases.mjs",
"start": "node dist/main.js",
"seed-users": "npx tsx prisma/seedUsers.ts",
"seed-suggestions": "npx tsx prisma/seedSuggestions.ts",
"seed-slaughter-votes": "npx tsx prisma/seedSlaughterVotes.ts",
"seed-voting": "npx tsx prisma/seedVoting.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@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",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1003.0",
"@faker-js/faker": "^9.9.0",
"@internationalized/date": "^3.12.0",
"@prisma/client": "^6.19.2",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"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",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.3.4",
"multer": "^2.1.1",
"node-cron": "^4.2.1",
"react-dropzone": "^15.0.0",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"winston": "^3.19.0"
},
"type": "module",
"_moduleAliases": {
"@middleware": "./middleware",
"@helper": "./helper"
}
}