-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 707 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 707 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
{
"name": "mfine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js",
"format": "prettier --write \"**/*.{js,ts}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"helmet": "^7.1.0",
"mongoose": "^8.2.1"
},
"devDependencies": {
"chai": "^5.1.0",
"esm": "^3.2.25",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"supertest": "^6.3.4",
"winston": "^3.12.0"
}
}