-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 852 Bytes
/
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
{
"name": "tourney-chess",
"version": "1.0.0",
"description": "Chess Tournament Manager",
"main": "app.js",
"scripts": {
"start": "node .",
"start:dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"lint:fix": "npm run lint -- --fix"
},
"author": "Anirudh Giri",
"license": "NCSA",
"dependencies": {
"connect-mongo": "4.6.0",
"dotenv": "10.0.0",
"express": "4.17.2",
"express-handlebars": "6.0.2",
"express-rate-limit": "6.1.0",
"express-session": "1.17.2",
"fastest-express-validator": "1.7.1",
"ioredis": "4.28.3",
"mongoose": "6.1.6",
"morgan": "1.10.0",
"nanoid": "3.2.0",
"rate-limit-mongo": "2.3.2",
"sequelize": "6.12.5"
},
"devDependencies": {
"eslint": "8.6.0",
"jest": "27.4.6",
"supertest": "6.1.6"
}
}