-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 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
87
88
89
{
"name": "rebootjs-back",
"version": "1.0.0",
"description": "Backend of the Messenger app for the RebootJS training",
"main": "dist/server.js",
"scripts": {
"start": "node -r dotenv/config ./dist/src/server.js",
"build": "tsc --project tsconfig.json",
"test": "jest",
"dev": "nodemon -r dotenv/config src/server.ts",
"dev-env": "nodemon"
},
"engines": {
"node": "=12.13.1",
"npm": "=6.12.1"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/connect-mongo": "^3.1.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/crypto-js": "^3.1.47",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/helmet": "0.0.47",
"@types/jest": "^26.0.14",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@types/passport.socketio": "^3.7.3",
"@types/socket.io": "^2.1.11",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.23.3",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport.socketio": "^3.7.0",
"socket.io": "^2.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/hapi__joi": "^17.1.5",
"@types/helmet": "0.0.47",
"@types/morgan": "^1.9.1",
"babel-jest": "^26.3.0",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Foetus6907/RebootJS-Back.git"
},
"keywords": [
"FlintAcademy"
],
"author": "mohamed ghoubali",
"license": "ISC",
"bugs": {
"url": "https://github.com/Foetus6907/RebootJS-Back/issues"
},
"homepage": "https://github.com/Foetus6907/RebootJS-Back#readme",
"nodemonConfig": {
"watch": [
"src"
],
"ignore": [
"node_modules"
],
"ext": "ts, js, json",
"execMap": {
"ts": "ts-node"
}
}
}