This repository has been archived by the owner on Aug 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
127 lines (127 loc) · 3.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "uppy-server",
"version": "0.13.4",
"description": "Server component for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
"main": "lib/uppy.js",
"types": "types/index.d.ts",
"author": "Transloadit.com",
"license": "ISC",
"homepage": "https://github.com/transloadit/uppy-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/transloadit/uppy-server.git"
},
"keywords": [
"file uploader",
"progress",
"preview",
"resumable uploads",
"tus",
"s3",
"google drive",
"dropbox",
"backend",
"websocket",
"express",
"realtime"
],
"bin": {
"uppy-server": "./lib/standalone/start-server.js"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint-staged",
"devDependencies": {
"@types/aws-serverless-express": "^3.0.1",
"@types/compression": "0.0.36",
"@types/connect-redis": "0.0.7",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.3",
"@types/express-session": "^1.15.6",
"@types/helmet": "0.0.37",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash.merge": "^4.6.3",
"@types/morgan": "^1.7.35",
"@types/ms": "^0.7.30",
"@types/node": "^8.5.1",
"@types/request": "^2.0.9",
"@types/tus-js-client": "^1.4.1",
"@types/uuid": "^3.4.3",
"@types/ws": "^3.2.1",
"eslint": "^4.19.1",
"eslint-config-standard": "5.1.0",
"eslint-plugin-promise": "1.0.8",
"eslint-plugin-standard": "1.3.2",
"fakefile": "0.0.8",
"jest": "^20.0.4",
"jest-cli": "^23.1.0",
"lint-staged": "3.2.1",
"nodemon": "^1.17.5",
"pre-commit": "1.1.3",
"supertest": "3.0.0",
"typescript": "2.7.1"
},
"dependencies": {
"@purest/providers": "1.0.0",
"@uppy/fs-tail-stream": "^1.2.0",
"atob": "2.1.0",
"aws-sdk": "^2.254.1",
"body-parser": "1.18.2",
"common-tags": "^1.7.2",
"connect-redis": "^3.3.0",
"cookie-parser": "1.4.3",
"express": "^4.16.0",
"express-interceptor": "^1.2.0",
"express-prom-bundle": "^3.1.0",
"express-session": "1.15.6",
"grant-express": "^4.0.1",
"helmet": "3.8.2",
"isobject": "3.0.1",
"jsonwebtoken": "^8.0.1",
"lodash.merge": "^4.6.0",
"morgan": "1.9.0",
"ms": "^2.0.0",
"node-redis-pubsub": "^2.0.0",
"node-schedule": "^1.3.0",
"prom-client": "^10.0.2",
"purest": "3.0.0",
"redis": "^2.7.1",
"request": "2.85.0",
"serialize-error": "^2.1.0",
"tus-js-client": "1.4.5",
"uuid": "2.0.2",
"validator": "^9.0.0",
"ws": "1.1.5"
},
"files": [
"lib/"
],
"jest": {
"testEnvironment": "node",
"automock": false,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"scripts": {
"build": "tsc -p .",
"deploy": "kubectl apply -f infra/kube/uppy-server-kube.yml",
"fix": "eslint . --fix",
"lint": "eslint .",
"lint-staged": "lint-staged",
"prepublish": "npm run build",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish",
"start": "node ./lib/standalone/start-server.js",
"start:dev": "bash -c 'source env.sh; env UPPYSERVER_DATADIR=./output UPPYSERVER_DOMAIN=localhost:3020 UPPYSERVER_PROTOCOL=http UPPYSERVER_PORT=3020 UPPY_ENDPOINTS=\"\" nodemon --exec node ./src/standalone/start-server.js'",
"test": "/bin/bash -c 'npm run build && npm run lint && source env.test.sh && jest'",
"test:watch": "npm test -- --watch"
},
"engines": {
"node": ">=6.0.0"
}
}