-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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": "pipeline-worker-api",
"version": "1.4.0",
"description": "Mouselight Pipeline Worker Service",
"author": "Patrick Edson <[email protected]> (http://github.com/pedson)",
"license": "LicenseRef-LICENSE",
"dockerImageName": "worker-api",
"dockerRepository": "mouselightpipeline",
"main": "server/pipelineWorkerApp.js",
"scripts": {
"devel": "DEBUG=pipeline* node $NODE_DEBUG_OPTION --trace-warnings server/pipelineWorkerApp.js",
"debug": "DEBUG=pipeline* node --inspect=pipeline-worker.local:9229 --trace-warnings server/pipelineWorkerApp.js",
"start": "node server/pipelineWorkerApp.js",
"docker-build": "gulp docker-build",
"release": "gulp release"
},
"dependencies": {
"amqplib": "^0.5.2",
"async": "^2.1.4",
"body-parser": "^1.15.2",
"debug": "^2.6.1",
"express": "^4.14.0",
"fs-extra": "^1.0.0",
"graphql": "^0.10.3",
"graphql-server-express": "^0.9.0",
"graphql-tools": "^1.0.0",
"lodash": "^4.17.10",
"mime": "^1.3.4",
"momentjs": "^2.0.0",
"pg": "^6.4.1",
"pm2": "2.10.4",
"sequelize": "^4.8.2",
"serve-static": "^1.11.1",
"socket.io-client": "^1.5.1",
"sqlite3": "^3.1.8",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.6",
"@types/async": "^2.0.37",
"@types/body-parser": "0.0.33",
"@types/cookies": "^0.6.0",
"@types/debug": "0.0.29",
"@types/express": "^4.0.33",
"@types/hapi": "^13.0.35",
"@types/koa": "^2.0.33",
"@types/lodash": "^4.14.109",
"@types/mime": "0.0.29",
"@types/sequelize": "^4.0.65",
"@types/serve-static": "^1.7.31",
"@types/socket.io-client": "^1.4.28",
"@types/uuid": "^3.0.0",
"gulp": "^3.9.1",
"gulp-shell": "^0.6.3",
"typescript": "^2.9.2"
}
}