-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "mnb-export-api",
"version": "1.7.0",
"private": true,
"main": "src/app.js",
"repository": "https://github.com/MouseLightPipeline/mnb-export-api.git",
"author": "Patrick Edson <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"dockerRepository": "mouselightdatabrowser",
"dockerImageName": "export-api",
"scripts": {
"debug": "node --trace-warnings src/app.js",
"start": "tsc && gulp build && cd dist && node --trace-deprecation app.js",
"clean": "tsc && gulp clean",
"compile": "tsc && gulp compile",
"build": "tsc && gulp build",
"docker-build": "tsc && gulp docker-build",
"docker-release": "tsc && gulp release"
},
"dependencies": {
"archiver": "^2.0.3",
"body-parser": "^1.17.2",
"debug": "^2.6.8",
"express": "^4.15.3",
"influx": "^5.0.7",
"moment": "^2.19.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/archiver": "^2.0.0",
"@types/express": "^4.0.35",
"@types/gulp": "^4.0.7",
"@types/gulp-shell": "^0.7.0",
"@types/lodash": "^4.14.64",
"@types/uuid": "^3.4.3",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"merge-stream": "^2.0.0"
}
}