-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "gen3-statics",
"version": "1.1.0",
"description": "S3 read-through proxy",
"main": "express.js",
"scripts": {
"compile": "npx tsc -p ./tsconfig.json --outDir . --rootDir src/@gen3/statics",
"watch": "npx tsc -p ./tsconfig.json --outDir . --rootDir src/@gen3/statics --watch",
"test": "npm run-script compile && cp src/@gen3/statics/spec/*.json spec/ && npx jasmine --config=jasmine.json",
"go": "node bin/server.js",
"start": "npm run-script compile && npm run-script go --",
"eslint": "npx eslint --ext ts src",
"elint": "npx eslint --ext ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/uc-cdis/gen3-statics.git"
},
"keywords": [
"S3",
"proxy"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uc-cdis/gen3-statics/issues"
},
"homepage": "https://github.com/uc-cdis/gen3-statics#readme",
"dependencies": {
"aws-config": "^1.4.0",
"aws-sdk": "^2.702.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^6.0.1",
"morgan": "^1.9.1",
"s3-proxy": "^1.2.1"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/helmet": "^4.0.0",
"@types/jasmine": "^3.4.0",
"@types/node": "^12.20.55",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"typescript": "latest"
}
}