-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "sharenetic",
"version": "0.0.2",
"description": "A file transfer service that connects peer to peer using webRTC API and uses pusher for signalling initial connection.",
"main": "backend.js",
"engines": {
"node": "16.x"
},
"dependencies": {
"bufferutil": "^4.0.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.3",
"helmet": "^4.6.0",
"nanoid": "^3.1.31",
"pusher": "^5.0.0",
"utf-8-validate": "^5.0.5",
"ws": "^7.5.3"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.13.1",
"@html-eslint/parser": "^0.13.1",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0"
},
"scripts": {
"start": "node ./backend/backend.js",
"dev": "nodemon ./backend/backend.js",
"debug": "nodemon --inspect ./backend/backend.js",
"lint": "eslint"
},
"author": "Mitrajit Chandra Chandra",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com:Mitrajit/Sharenetic.git"
}
}