-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 889 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
{
"name": "odinserver",
"version": "2.3.0",
"description": "OdinERP",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js --host --ignore frontend",
"start": "node index.js"
},
"keywords": [],
"author": "Tobias Ceballos",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"helmet": "^7.1.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"mongodb": "^6.5.0",
"mongoose": "^8.3.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"socket.io": "^4.7.5",
"supertest": "^6.3.4",
"xlsx": "^0.18.5"
}
}