-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.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
{
"name": "connect",
"version": "1.0.0",
"description": "API for DCEG Cohort Studies",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-local": "source ./setEnvVars.sh && ./node_modules/.bin/nodemon -w ./server.js -x node server.js",
"start": "./node_modules/.bin/nodemon -w ./server.js -w routes -x node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/episphere/connect.git"
},
"author": "Jonas Almeida",
"license": "ISC",
"bugs": {
"url": "https://github.com/episphere/connect/issues"
},
"homepage": "https://github.com/episphere/connect#readme",
"dependencies": {
"@koa/cors": "^2.2.3",
"box-node-sdk": "^1.28.0",
"box-sdk": "^0.0.8",
"json2csv": "^4.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"neat-csv": "^5.0.0",
"nodemon": "^1.19.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-logger": "^3.1.1",
"koa-body": "^4.1.0",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.1"
}
}