forked from MyZubster-Ecosystem/myzubster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) 路 747 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) 路 747 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
{
"name": "myzubster-backend",
"version": "1.0.0",
"description": "Node.js backend for MyZubster",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit --detectOpenHandles --timeout=30000",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --forceExit --detectOpenHandles --timeout=30000"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.3",
"mongoose": "^8.2.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^30.4.2",
"mongodb-memory-server": "^11.2.0",
"nodemon": "^3.1.0",
"supertest": "^7.2.2"
}
}