-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.11 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
{
"name": "pipeline-api",
"version": "1.6.0",
"description": "",
"author": "Patrick Edson <[email protected]> (http://github.com/pedson)",
"main": "server/pipelineApiApp.js",
"license": "LicenseRef-LICENSE",
"dockerRepository": "mouselightpipeline",
"scripts": {
"grammar": "nearleyc server/argument-parser/taskArgumentGrammar.ne -o server/argument-parser/taskArgumentGrammar.js",
"devel": "npm run grammar && DEBUG=pipeline* node $NODE_DEBUG_OPTION --trace-warnings server/pipelineApiApp.js",
"docker-build": "gulp docker-build",
"docker-release": "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",
"apollo-server-express": "^2.9.6",
"async": "^3.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"graphql": "^14.5.8",
"isomorphic-fetch": "^2.2.1",
"mime": "^2.4.4",
"moo": "^0.5.1",
"pg": "^7.12.1",
"sequelize": "^5.19.6",
"serve-static": "^1.14.1",
"sqlite3": "^4.1.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bluebird": "^3.5.28",
"@types/body-parser": "1.17.1",
"@types/cors": "^2.8.6",
"@types/debug": "4.1.5",
"@types/express": "^4.17.1",
"@types/fs-extra": "8.0.0",
"@types/hapi": "^18.0.2",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.19",
"@types/koa": "^2.0.50",
"@types/mime": "2.0.1",
"@types/nearley": "^2.11.0",
"@types/node-uuid": "0.0.28",
"@types/serve-static": "^1.13.3",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"jest": "^24.9.0",
"nearley": "^2.19.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}