-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "note-app",
"version": "",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"keywords": [],
"author": "Mohammad",
"repository": {},
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.8.1",
"fastest-validator": "^1.17.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.4",
"unique-username-generator": "^1.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.5",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"prettier": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}