-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1 KB
/
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
41
42
43
44
45
46
47
48
{
"type": "module",
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"dev": "nodemon ./index.js",
"testdetect": "jest --detectOpenHandles",
"test": "jest --runInBand"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.5",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"flatted": "^3.3.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"mongoose": "^7.8.1",
"nodemailer": "^6.9.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.[tj]sx?$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}