-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "app_api",
"version": "1.0.0",
"description": "Api",
"main": "dist/app.js",
"author": "vibhor",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"mime": "^2.3.1",
"mongoose": "^5.2.3",
"multer": "^1.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"scripts": {
"tsc": "tsc",
"build": "npm run tsc --",
"start": "node .",
"buildandrun": "npm run build && npm start"
},
"devDependencies": {
"@types/morgan": "^1.7.35",
"morgan": "^1.9.0",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/express-jwt": "0.0.40",
"@types/express-session": "^1.15.10",
"@types/jsonwebtoken": "^7.2.8",
"@types/mime": "^2.0.0",
"@types/mongoose": "^5.2.0",
"@types/multer": "^1.3.7",
"@types/passport": "^0.4.6",
"@types/passport-local": "^1.0.33",
"typescript": "^2.8.0"
}
}