-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.64 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
{
"name": "arms",
"version": "1.0.0",
"description": "ARMS is a management system for renting apartments. There are the tenants and land-lord, who is the admin. The admin registers apartments on ARMS, a tenant who is interested in renting from this land-lord registers for an apartment. Each apartment has its own detail, describing the basic interior of the room - provided by the admin, the cost for a term - a term is three month.",
"main": "src/app.js",
"scripts": {
"build": "babel ./src --out-dir build",
"dev": "nodemon",
"start": "node src/app.js",
"format": "npx prettier --write ./src",
"check": "npx prettier --check ./src",
"lint": "npx eslint ./src"
},
"keywords": [
"renting",
"apartment",
"system",
"management",
"tenant",
"room",
"mongodb",
"mongoose",
"js",
"es6",
"redis",
"caching"
],
"type": "module",
"author": "Otumian-empire@github.com",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.6.0",
"joi-password": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"redis": "^4.2.0",
"winston": "^3.7.2"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/morgan-json": "^1.1.0",
"eslint": "^8.17.0",
"prettier": "2.6.2"
}
}