-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "bizfund_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "env-cmd -f ./config/dev.env nodemon ./src/index.js",
"test-local": "env-cmd -f ./config/test.env jest --watch",
"test": "jest --forceExit",
"format": "prettier --write \"src/**/*.js\" --config .prettierrc",
"lint": "prettier --check \"src/**/*.js\" --config .prettierrc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^26.0.21",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.16",
"multer": "^1.4.2",
"nodemailer": "^6.6.3",
"sharp": "^0.27.2",
"validator": "^13.5.2"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"supertest": "^6.1.3"
}
}