-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 KB
/
package.json
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
{
"name": "jamcore",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "npx tsx main.ts",
"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": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.8",
"@types/node-cron": "^3.0.11",
"prisma": "^6.2.1",
"typescript": "^5.7.3"
},
"dependencies": {
"@faker-js/faker": "^9.4.0",
"@prisma/client": "^6.2.1",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"react-dropzone": "^14.3.5",
"tsx": "^4.19.2",
"uuid": "^11.0.5",
"winston": "^3.17.0"
},
"type": "module",
"_moduleAliases": {
"@middleware": "./middleware",
"@helper": "./helper"
}
}