-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 863 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "mocha \"test/**/*.js\"",
"test:report": "mocha \"test/**/*.js\" --reporter mochawesome --reporter-options reportDir=reports/mochawesome,reportFilename=index,quiet=true"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"chai": "^6.2.2",
"mocha": "^11.7.5",
"mochawesome": "^7.1.4",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
},
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0"
}
}