-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "premedpk-med-school-server",
"version": "1.0.0",
"description": "MedSchool NodeJS Server",
"main": "index.js",
"scripts": {
"start": "yarn run build && node build/main.js",
"dev": "tsnd -r tsconfig-paths/register --exit-child --transpile-only src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc && tsc-alias"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/multer": "^1.4.7",
"aws-sdk": "^2.1463.0",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"busboy": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-vault": "^1.25.0",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"helmet": "6.1.0",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mongoose": "^7.5.1",
"multer": "^1.4.5-lts.1",
"pino": "^8.15.1",
"reflect-metadata": "^0.1.13",
"tsc-alias": "^1.8.8",
"typedi": "^0.10.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^20.6.0",
"@types/uuid": "^9.0.4",
"pino-pretty": "^10.2.0",
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}