-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "ts-expres-mongoose-boilerplate",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/code-yeongyu/ts-express-mongoose-boilerplate",
"author": "YeonGyu Kim <[email protected]>",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_PATH=src nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"mongoose": "^5.10.11",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"swagger-jsdoc": "^5.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/express-validator": "^3.0.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.2",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"cross-env": "^7.0.2",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}