-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pipeline-scheduler",
"version": "1.5.5",
"description": "",
"author": "Patrick Edson <[email protected]> (http://github.com/pedson)",
"main": "server/pipelineSchedulerApp.js",
"license": "LicenseRef-LICENSE",
"dockerRepository": "mouselightpipeline",
"dockerImageName": "scheduler",
"scripts": {
"devel": "DEBUG=pipeline* node $NODE_DEBUG_OPTION --trace-warnings server/pipelineSchedulerApp.js",
"clean": "tsc && gulp clean",
"compile": "tsc && gulp compile",
"build": "tsc && gulp build",
"docker-build": "tsc && gulp docker-build",
"docker-release": "tsc && gulp release"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"amqplib": "^0.5.5",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.16",
"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",
"graphql-tag": "^2.10.1",
"influx": "^5.5.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"pg": "^7.14.0",
"sequelize": "^5.21.2",
"serve-static": "^1.14.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bluebird": "^3.5.29",
"@types/body-parser": "1.17.1",
"@types/debug": "4.1.5",
"@types/express": "^4.17.2",
"@types/fs-extra": "8.0.1",
"@types/gulp-shell": "^0.7.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/mime": "2.0.1",
"@types/node": "^12.12.12",
"@types/node-uuid": "0.0.28",
"@types/sequelize": "^4.28.7",
"@types/serve-static": "^1.13.3",
"@types/uuid": "^3.4.6",
"@types/validator": "^12.0.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"jest": "^24.9.0",
"merge-stream": "^2.0.0",
"typescript": "^4.1.5",
"ts-jest": "^24.0.2"
},
"resolutions": {
"graceful-fs": "^4.2.4"
}
}