-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node BackEnd/index",
"test": "jest --watchAll --verbose",
"server": "nodemon BackEnd/index.js",
"client": "npm start --prefix FrontEnd",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix FrontEnd && npm run build --prefix FrontEnd"
},
"author": "RedStream",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-jest": "^29.5.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.3",
"find-config": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"nodemon": "^2.0.22"
},
"devDependencies": {
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}