-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.9 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
{
"name": "disco-4g-without-sc2",
"version": "1.0.0",
"description": "I just want to have fun with Parrot Disco and I need something new :) This project is open source.",
"main": "build/app.js",
"types": "build/app.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc && cp package* build/ && cp stream.sdp build/ && cp -R flightplans build/",
"format": "prettier --write \"src/*.ts\"",
"lint": "tslint -p tsconfig.json",
"watch": "nodemon",
"start": "ts-node src/app.ts",
"start-no-disco": "NO_DISCO=1 ts-node src/app.ts",
"update-api": "npm i github:ClassAxion/parrot-disco-api"
},
"files": [
"build/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ClassAxion/disco-4g-without-sc2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClassAxion/disco-4g-without-sc2/issues"
},
"homepage": "https://github.com/ClassAxion/disco-4g-without-sc2#readme",
"dependencies": {
"basic-ftp": "^4.6.6",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"node-bebop": "^0.6.0",
"nodemon": "^2.0.12",
"parrot-disco-api": "github:ClassAxion/parrot-disco-api",
"simple-peer": "^9.11.0",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"winston": "^3.3.3",
"wrtc": "^0.4.7",
"wrtc-to-ffmpeg": "0.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^15.14.2",
"@types/simple-peer": "^9.11.5",
"@types/socket.io": "^3.0.2",
"prettier": "^2.3.2",
"tsconfig-paths": "^3.10.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}