This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
63
64
65
66
67
68
{
"name": "just-drop-it",
"version": "2.7.0",
"description": "Simply beam files between two browsers",
"keywords": [
"Transfer",
"Node.js",
"application",
"socket-io"
],
"contributors": [
{
"name": "Arnaud Ruffin",
"email": "arnaud.ruffin@orange.com"
},
{
"name": "Benjamin Einaudi",
"email": "antechrestos@gmail.com"
}
],
"engines": {
"node": ">=14.17.5"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"body-parser": "^1.19.0",
"boosted": "^5.0.2",
"browserify": "17.0.0",
"clipboard": "2.0.8",
"debug": "4.3.2",
"express": "^4.17.3",
"feather-icons": "^4.28.0",
"jquery": "3.5.0",
"jquery-file-download": "1.4.6",
"morgan": "1.9.1",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.1.3",
"socket.io-stream": "0.9.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"uglify-js": "3.14.1",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1"
},
"scripts": {
"preinstall": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions",
"start": "ts-node index.ts",
"start-dev": " DEBUG=app* ts-node-dev index.ts",
"test": "mocha --require ts-node/register --ui bdd test/test_transfert.ts"
},
"resolutions": {
"debug": "4.3.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"mocha": "9.2.2",
"request": "2.88.2",
"should": "11.2.1",
"ts-node-dev": "^1.1.8"
},
"bundleDependencies": [],
"private": true,
"main": "server/dropServer.ts"
}