-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "backend-vendor",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"swagger": "node documentation",
"test:watch": "jest --watch --runInBand --unhandled-rejections=strict",
"test": "jest --detectOpenHandles --logHeapUsage",
"test:coverage": "jest --coverage --detectOpenHandles --logHeapUsage",
"docker": "docker-compose up server",
"docker:test": "docker-compose run server npm run test:watch"
},
"dependencies": {
"@alexlafroscia/yaml-merge": "^4.0.0",
"bcrypt": "^5.0.1",
"celebrate": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"glob": "^7.1.6",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.27.0",
"mongoose": "^5.12.2",
"mongoose-beautiful-unique-validation": "^7.1.1",
"mongoose-dummy": "^1.0.8",
"mongoose-lean-virtuals": "^0.8.0",
"mongoose-paginate-v2": "^1.4.2",
"morgan": "^1.10.0",
"node-geocoder": "^3.27.0",
"passport": "^0.4.1",
"socket.io": "^4.0.0",
"socketio-jwt": "^4.6.2",
"winston": "^3.3.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"axios": "^0.21.1",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.5.2",
"jest": "^26.6.3",
"js-yaml": "^3.14.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6"
},
"keywords": [],
"license": "MIT"
}