-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 965 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
37
38
39
40
{
"name": "gym_pro_backend",
"version": "1.0.0",
"description": "Backend",
"main": "./src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"build": "node src/index.js"
},
"author": "Chirantha Siriwardhana",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.1",
"mongoose": "^8.6.2",
"nodemailer": "^6.9.15",
"nodemon": "^3.1.4"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-jest": "^29.7.0",
"chai": "^5.1.1",
"chai-http": "^5.1.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"mocha": "^10.7.3",
"mongodb-memory-server": "^10.1.2",
"supertest": "^7.0.0"
}
}