-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "poc",
"version": "0.0.1",
"description": "NodeJS Backend Proof Of Concept",
"main": "src/index.ts",
"author": "rajib bajracharya <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev2": "source ./.env.sh && nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"dev": "source ./.env.sh && ts-node-dev --respawn --transpileOnly src/index.ts"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"helmet": "^3.22.0",
"lodash": "^4.17.15",
"mongoose": "^5.9.10",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.150",
"@types/mongoose": "^5.7.14",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"ts-node": "^8.9.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}