-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "my-drive",
"version": "1.0.0",
"description": "A simple cloud file storage system",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --files --respawn src/index.ts",
"prepare": "husky install",
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"lint:fix": "eslint --fix --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-raushan/my-drive.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-raushan/my-drive/issues"
},
"homepage": "https://github.com/code-raushan/my-drive#readme",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.535.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-sns": "^3.540.0",
"@aws-sdk/lib-storage": "^3.540.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"ip": "^1.1.8",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"kysely": "^0.27.3",
"moment": "^2.29.4",
"mongoose": "^8.0.1",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.4",
"pg": "^8.11.3",
"prisma": "^5.11.0",
"prisma-kysely": "^1.8.0",
"redis": "^4.6.10",
"socket.io": "^4.7.2",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-aws-cloudwatch": "^3.0.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/pg": "^8.11.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}