-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "cutsession",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"build": "tsc",
"postinstall": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.2",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^6.8.3",
"morgan": "^1.10.0"
},
"_moduleAliases": {
"@/controllers": "dist/controllers",
"@/interfaces": "dist/interfaces",
"@/middleware": "dist/middleware",
"@/models": "dist/models",
"@/services": "dist/services",
"@/utils": "dist/utils",
"@/validations": "dist/validations"
}
}