-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 869 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
36
37
38
39
{
"name": "carogame_project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "mocha --timeout 10000"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.1.3",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.7",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"mocha": "^2.4.5",
"nodemon": "^3.0.1"
}
}