-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 1.09 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
{
"name": "examples",
"version": "6.1.6",
"private": true,
"scripts": {
"basic": "tsnd -r tsconfig-paths/register -r dotenv/config express-basic",
"express": "tsnd -r tsconfig-paths/register -r dotenv/config express",
"express-polling": "tsnd -r tsconfig-paths/register -r dotenv/config express-polling",
"gcs:direct": "tsnd -r tsconfig-paths/register -r dotenv/config gcs-direct",
"gcs": "tsnd -r tsconfig-paths/register -r dotenv/config express-gcs",
"s3": "tsnd -r tsconfig-paths/register -r dotenv/config express-s3",
"s3:direct": "tsnd -r tsconfig-paths/register -r dotenv/config s3-direct",
"tus": "tsnd -r tsconfig-paths/register -r dotenv/config express-tus",
"validation": "tsnd -r tsconfig-paths/register -r dotenv/config validation",
"plain-nodejs": "tsnd -r dotenv/config node-http-server",
"server": "tsnd -r dotenv/config server"
},
"dependencies": {
"dotenv": "16.4.5",
"express": "^4.19.2",
"node-uploadx": "^6.1.6",
"winston": "3.13.1"
},
"devDependencies": {
"@types/express": "4.17.21",
"ts-node-dev": "2.0.0"
}
}