-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.23 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
{
"name": "pipeline-api",
"version": "1.4.3",
"description": "",
"author": "Patrick Edson <pedson@leapscientific.com> (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",
"start": "node server/pipelineApiApp.js",
"docker-build": "gulp docker-build",
"release": "gulp release",
"test": "npm run grammar && node $NODE_DEBUG_OPTION --trace-warnings __tests__/taskArgumentGrammar.test.js",
"test2": "npm run grammar && jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"apollo-client": "^1.5.0",
"apollo-server-express": "^1.3.6",
"async": "^2.4.1",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"debug": "^2.6.8",
"express": "^4.15.3",
"fs-extra": "^1.0.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"mime": "^1.3.6",
"moo": "^0.4.3",
"nearley": "^2.12.1",
"pg": "^6.4.0",
"sequelize": "^4.38.0",
"serve-static": "^1.12.3",
"socket.io": "^1.7.4",
"sqlite3": "^3.1.8",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/cors": "^2.8.3",
"@types/debug": "0.0.29",
"@types/express": "^4.0.36",
"@types/fs-extra": "0.0.34",
"@types/hapi": "^13.0.35",
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "^22.2.0",
"@types/koa": "^2.0.39",
"@types/mime": "0.0.29",
"@types/node-uuid": "0.0.28",
"@types/sequelize": "^4.27.25",
"@types/serve-static": "^1.7.31",
"@types/socket.io": "^1.4.29",
"@types/uuid": "^3.0.0",
"gulp": "^3.9.1",
"gulp-shell": "^0.6.3",
"jest": "^22.4.2",
"ts-jest": "^22.4.1",
"typescript": "^2.9.2"
}
}