-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "brand-backend",
"version": "1.0.0",
"description": "content soon...",
"main": "server.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --env=node --coverage",
"dev": "nodemon server.js",
"start": "node server.js"
},
"jest": {
"transform": {},
"testEnvironment": "jest-environment-jsdom-sixteen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackd44/My-Brand-Backend-Benn-Dalton.git"
},
"author": "blackd44",
"license": "ISC",
"bugs": {
"url": "https://github.com/blackd44/My-Brand-Backend-Benn-Dalton/issues"
},
"homepage": "https://github.com/blackd44/My-Brand-Backend-Benn-Dalton#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"joi-password": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.2"
},
"devDependencies": {
"jest": "^29.3.1",
"jest-environment-jsdom-sixteen": "^2.0.0",
"jest-environment-node": "^29.3.1",
"morgan": "^1.10.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.7",
"swagger-ui-express": "^4.6.0"
}
}