-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "txr",
"version": "0.5.2",
"description": "Send files hilariously easily to other computers using WebSockets.",
"author": "Lance Whatley <[email protected]>",
"license": "MIT",
"main": "./dist/txr-library.js",
"repository": {
"type": "git",
"url": "https://github.com/whatl3y/txr.git"
},
"scripts": {
"build": "gulp build",
"start": "node bin/txr-server",
"test": "mocha --exit -r ts-node/register --recursive './src/**/*.spec.ts'"
},
"bin": {
"txr": "./bin/txr-client",
"txr-server": "./bin/txr-server"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.6",
"@types/ioredis": "^4.16.7",
"@types/markdown-it": "^10.0.1",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-plumber": "^1.2.1",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^8.0.1",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"axios": "^0.19.2",
"bunyan": "^1.8.13",
"colors": "^1.4.0",
"express": "^4.17.1",
"highlight.js": "^10.1.1",
"ioredis": "^4.17.3",
"markdown-it": "^11.0.0",
"minimist": "^1.2.5",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"socket.io-stream": "^0.9.1",
"zip-dir": "^1.0.2"
}
}