-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 921 Bytes
/
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
{
"name": "piperchat-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node ./api/index.js",
"dev": "nodemon ./api/index.js"
},
"keywords": [],
"author": "Carlos Florez <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.36.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.3",
"semistandard": "^16.0.1",
"standard": "^17.0.0"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.6.8",
"socket.io": "^4.6.1"
},
"eslintConfig": {
"extends": [
"./node_modules/semistandard/eslintrc.json"
],
"rules": {
"camelcase": "off"
}
}
}