-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
39
40
41
42
43
{
"name": "ecoly-api",
"version": "1.0.0",
"description": "Ecoly API",
"main": "server.js",
"scripts": {
"test": "jest --runInBand --coverage=true --silent",
"dev": "nodemon --exec \"cls && node\" server.js",
"start": "node server.js",
"resetDB": "node ./data/reset.js"
},
"keywords": [],
"author": "Tiago Ribeiro, Pedro Teixeira, José Nogueira",
"license": "ISC",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/data/createData.js",
"/data/resetDB.js"
]
},
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.37.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"mysql2": "^3.3.5",
"sequelize": "^6.32.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"dotenv": "^16.1.4",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
}
}