-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "express-ts-boilerplate",
"version": "2.0.0",
"description": "Expres Typescript Server",
"main": "index.js",
"author": "Kim Hyunse <anzmf12@naver.com>",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.13",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"scripts": {
"start": "cd src && nodemon --exec ts-node -r tsconfig-paths/register server.ts",
"test": "jest --detectOpenHandles --forceExit",
"build": "tsc"
},
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "4.18.2",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.4",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}