-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.12 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
87
{
"name": "sakan",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node -T index.ts",
"seed": "ts-node seed.ts",
"watch": "ts-node-dev --respawn --transpileOnly --clear --debounce --exit-child index.ts",
"build": "tsc",
"postinstall": "npm run build",
"test": "NODE_ENV=testing jest --runInBand",
"lint": "",
"format": ""
},
"nodemonConfig": {
"watch": ".",
"ext": "ts",
"ignore": [
"*.spec.ts"
],
"legacyWatch": true,
"delay": "3",
"exec": "npm run start"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"@types/crypto-js": "^3.1.47",
"@types/faker": "^4.1.10",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.8",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/socket.io": "^2.1.4",
"cors": "^2.8.5",
"cron": "^1.8.1",
"crypto-js": "^4.0.0",
"date-fns": "^2.7.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"faker": "^4.1.0",
"helmet": "^3.21.2",
"http-status": "^1.4.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.11",
"mongoose-lean-virtuals": "^0.5.0",
"morgan": "^1.9.1",
"nodemailer": "^6.4.2",
"socket.io": "^2.3.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/cron": "^1.7.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.3",
"@types/http-status": "^0.2.30",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.32",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"nodemon": "^1.19.4",
"ts-node": "^8.5.2",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"author": "Abdelrahman Soliman",
"license": "ISC"
}