-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "file-server-api",
"version": "3.6.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"postinstall": "prisma generate",
"migrate": "prisma migrate deploy",
"docs": "retype watch www",
"dev": "nodemon"
},
"keywords": [],
"author": "deafnv",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.16.1",
"archiver": "^5.3.1",
"bcrypt": "^5.1.0",
"check-disk-space": "^3.3.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^7.0.1",
"fs-extra": "^11.1.1",
"fuse.js": "^6.6.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"minimatch": "^9.0.0",
"multer": "^1.4.5-lts.1",
"request-ip": "^3.3.0",
"socket.io": "^4.6.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.194",
"@types/multer": "^1.4.7",
"@types/node": "^18.16.2",
"@types/request-ip": "^0.0.37",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"prisma": "^4.16.1",
"typescript": "^5.0.4"
}
}