-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.05 KB
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": "storage-url-cache",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "nodemon -r dotenv/config ./server | bunyan",
"lint": "eslint --ext .js server",
"debug": "nodemon --inspect-brk -r dotenv/config ./server | bunyan",
"start": "NODE_ENV=production node -r dotenv/config ./server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/underscope/storage-url-cache.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/underscope/storage-url-cache/issues"
},
"homepage": "https://github.com/underscope/storage-url-cache#readme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"dargs": "^6.0.0",
"del-cli": "^1.1.0",
"emoji-strip": "^1.0.1",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"minimist": "^1.2.0",
"nodemon": "^1.18.6",
"split2": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.342.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-history-api-fallback": "^2.2.1",
"file-type": "^10.1.0",
"fs-blob-store": "^5.2.1",
"get-stream": "^4.1.0",
"helmet": "^3.14.0",
"http-errors": "^1.7.1",
"http-status": "^1.2.0",
"humanize-string": "^1.0.2",
"into-stream": "^4.0.0",
"joi": "^14.0.1",
"jsend": "^1.0.2",
"jugglingdb": "^2.0.1",
"lodash": "^4.17.11",
"make-dir": "^1.3.0",
"mime": "^2.3.1",
"morgan": "^1.9.1",
"ncp": "^2.0.0",
"nocache": "^2.0.0",
"promise-queue": "^2.2.5",
"s3-blob-store": "^3.2.0",
"safe-require": "^1.0.3",
"semver": "^5.6.0",
"truncate": "^2.0.1",
"url-join": "^4.0.0"
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 5.8.0",
"postgres": ">= 9.4"
}
}