-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"repository": {
"directory": ".git"
},
"name": "devcon",
"version": "1.0.0",
"description": "developer connector social media",
"main": "index.js",
"dependencies": {
"@types/passport-anonymous": "^1.0.3",
"@types/request-promise": "^4.1.46",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.1",
"fs-extra": "^9.0.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.27",
"module-alias": "^2.2.2",
"mongoose": "^5.9.11",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.14",
"passport": "^0.4.1",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"request-promise": "^4.2.6",
"sharp": "^0.25.4",
"status-code-enum": "^1.0.0",
"tsconfig-paths": "^3.9.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/fs-extra": "^9.0.1",
"@types/helmet": "0.0.46",
"@types/jsonwebtoken": "^8.3.9",
"@types/mime-types": "^2.1.0",
"@types/mongoose": "^5.7.14",
"@types/morgan": "^1.9.0",
"@types/multer": "^1.4.3",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/sharp": "^0.25.1",
"concurrently": "^5.3.0",
"ts-node": "^8.9.1",
"tslint": "^6.1.3",
"typescript": "^3.8.3"
},
"_moduleAliases": {
"@shared": "dist/shared",
"@conf": "dist/conf",
"@models": "dist/models"
},
"keywords": [
"social-media",
"social-network"
],
"nodemonConfig": {
"ignore": [
"node_modules"
],
"watch": [
"src/**/*.ts",
"src/bin/www"
],
"exec": "npm run dev",
"ext": "ts"
},
"scripts": {
"start:client": "concurrently --names server,browser -c yellow,blue \"yarn run start:dev\" \"cd client && yarn run start\" ",
"start:dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "ts-node ./src/bin/www.ts",
"debug": "node --inspect -r ts-node/register ./src/bin/www.ts",
"start": "node -r module-alias/register ./dist/bin/www.js"
},
"author": "[email protected]",
"license": "MIT"
}