forked from DAVFoundation/missioncontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 819 Bytes
/
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
{
"name": "missioncontrol",
"version": "0.0.1",
"description": "Controls and orchestrates missions between DAV users and vehicles",
"license": "MIT",
"author": "Tal Ater <[email protected]>",
"main": "./server/server-web.js",
"repository": {
"type": "git",
"url": "https://github.com/DAVFoundation/missioncontrol.git"
},
"scripts": {
"start": "node server/start-servers.js",
"test": "gulp js",
"thrift": "thrift -gen js:node -strict -recurse -out ./server/thrift ./resources/idl/CaptainMissionControl.thrift"
},
"dependencies": {
"express": "^4.15.3",
"randomstring": "^1.1.5",
"thrift": "^0.10.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-shell": "^0.6.3",
"jest-cli": "^20.0.4"
}
}