-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 947 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
{
"name": "mycontacts-backend-api",
"version": "1.0.0",
"description": "This is express project for my contacts backend api",
"main": "server.js",
"scripts": {
"test": "mocha --timeout 10000 --exit",
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "Akhil Talashi",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1506.0",
"bcrypt": "^5.1.0",
"chai": "^4.3.10",
"chai-http": "^4.3.0",
"csv": "^6.3.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mariadb": "^3.2.1",
"mocha": "^10.2.0",
"mongoose": "^6.6.5",
"mysql2": "^3.6.1",
"node-statsd": "^0.1.1",
"save-dev": "^0.0.1-security",
"sequelize": "^6.11.0",
"winston": "^3.11.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}