-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"name": "matching-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "ENV=test mocha --timeout 10000 --exit",
"lint": "npx eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.1.0"
},
"dependencies": {
"@socket.io/admin-ui": "^0.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.1.0",
"mongoose": "^6.4.5",
"redis": "^4.3.0",
"sequelize": "^6.21.3",
"socket.io": "^4.5.1",
"sqlite3": "^5.0.10",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}