-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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
44
{
"name": "guardian-system-management",
"version": "1.0.0",
"main": "src/server.js",
"dependencies": {
"@fastify/static": "^8.0.1",
"@fastify/swagger": "^6.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-oas-generator": "^1.0.46",
"express-rate-limit": "^7.4.1",
"fastify": "^4.28.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mailersend": "^2.3.0",
"mongoose": "^6.13.3",
"multer": "^1.4.5-lts.2",
"nodemon": "^3.1.7",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"redoc": "^2.1.5",
"sequelize": "^6.37.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ws": "^8.17.0"
},
"scripts": {
"start": "nodemon src/server.js",
"dev": "nodemon src/app.js",
"test": "NODE_ENV=test mocha 'src/test/**/*.cjs' --recursive --exit"
},
"devDependencies": {
"@types/socket.io": "^3.0.2",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"mocha": "^10.7.3"
}
}