-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "@floatingfile/server",
"version": "0.0.1",
"description": "Web app for cross platform file sharing",
"main": "dist/index.js",
"private": true,
"types": "dist/types/src/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node .",
"dev": "ts-node-dev --respawn --exit-child --transpile-only src/index.ts",
"generate": "yarn prisma generate",
"studio": "yarn prisma studio",
"migrate-deploy": "yarn prisma migrate deploy"
},
"author": "",
"license": "ISC",
"dependencies": {
"@floatingfile/types": "0.0.1",
"@honeybadger-io/js": "^3.1.0",
"@prisma/client": "4.10.1",
"aws-sdk": "^2.656.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.28.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-easy-zip": "^1.1.5",
"heic-convert": "^1.2.4",
"node-cron": "^3.0.0",
"os-utils": "^0.0.14",
"redis": "^4.5.1",
"sharp": "0.29.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/honeybadger": "^1.4.0",
"@types/morgan": "^1.9.3",
"@types/node-cron": "^3.0.1",
"@types/os-utils": "^0.0.1",
"@types/sharp": "^0.27.1",
"nodemon": "^2.0.12",
"prisma": "4.10.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "4.8.4"
},
"peerDependencies": {
"@types/node": "^16.3.3"
}
}