-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.18 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.18 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
{
"name": "examples",
"version": "6.2.1",
"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",
"logtape": "tsnd -r tsconfig-paths/register -r dotenv/config express-logtape",
"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": {
"@logtape/logtape": "^2.0.5",
"dotenv": "17.3.1",
"express": "^5.2.1",
"node-uploadx": "^6.2.1"
},
"devDependencies": {
"@types/express": "5.0.6",
"ts-node-dev": "2.0.0"
}
}