-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "pipeline-worker-api",
"version": "1.5.0",
"description": "Mouselight Pipeline Worker Service",
"author": "Patrick Edson <pedson@leapscientific.com> (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.local:9229 --trace-warnings server/pipelineWorkerApp.js",
"docker-build": "gulp docker-build",
"docker-release": "gulp release"
},
"dependencies": {
"amqplib": "^0.5.5",
"apollo-server-express": "^2.9.7",
"async": "^3.1.0",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"graphql": "^14.5.8",
"lodash": "^4.17.15",
"momentjs": "^2.0.0",
"pg": "^8.6.0",
"sequelize": "^5.21.2",
"serve-static": "^1.14.1",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/async": "^3.0.3",
"@types/bluebird": "^3.5.28",
"@types/body-parser": "1.17.1",
"@types/debug": "4.1.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.145",
"@types/node": "^12.12.6",
"@types/serve-static": "^1.13.3",
"@types/uuid": "^3.4.6",
"@types/validator": "^10.11.3",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"typescript": "^3.7.2"
}
}