-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
{
"name": "txt-uploader-api",
"version": "1.0.0",
"description": "Api for uploading txt files",
"main": "src/server.ts",
"scripts": {
"start": "node build/server.js",
"dev": "tsx watch src/server.ts",
"build": "tsc --project tsconfig.json"
},
"author": "Lucas Santos",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.13",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"mongoose": "^7.1.1",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.5",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}