-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "tournament-management-api",
"version": "1.0.0",
"description": "A REST API for creating and managing Tournaments, Participants, and Matches.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"init-db": "node init_db.js",
"sim-single-elim": "node simulate-tournament.js single_elimination",
"sim-round-robin": "node simulate-tournament.js round_robin",
"sim-swiss": "node simulate-tournament.js swiss",
"sim-league": "node simulate-league.js"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"body-parser": "^1.19.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.17.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"node-html-to-image": "^3.3.0",
"path": "^0.12.7",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.0",
"sqlite3": "^5.1.6"
},
"keywords": [
"tournament",
"api",
"rest",
"elo",
"bracket"
],
"author": "",
"license": "ISC",
"devDependencies": {
"sequelize-cli": "^6.6.1"
}
}