-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "node killProcesses.js 4000 && nodemon server.js",
"start": "node server.js",
"heroku-postbuild": " NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend",
"test": "jest"
},
"keywords": [],
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"babel": "^6.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jest": "^29.6.2",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.2",
"nodemailer": "^6.9.3",
"nodemon": "^2.0.22"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2"
}
}