-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "p2p",
"version": "1.0.0",
"description": "",
"main": "dist/server.mjs",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node ./dist/server.mjs",
"dev": "nodemon src/server.js",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/arun-kushwaha04/P2P.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/arun-kushwaha04/P2P/issues"
},
"homepage": "https://github.com/arun-kushwaha04/P2P#readme",
"devDependencies": {
"@types/event-stream": "^4.0.0",
"@types/heapdump": "^0.3.1",
"@types/inquirer": "^9.0.3",
"@types/mime-types": "^2.1.1",
"@types/uuid": "^9.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"crypto": "^1.0.1",
"event-stream": "^4.0.1",
"express": "^4.18.2",
"file-digest": "^0.0.3",
"fs-path": "^0.0.25",
"hash-files": "^1.1.1",
"heapdump": "^0.3.15",
"inquirer": "^9.1.4",
"mime-types": "^2.1.35",
"mongoose": "^6.9.0",
"node-json-db": "^2.1.3",
"socket.io": "^4.6.1",
"uuid": "^9.0.0"
}
}