-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.67 KB
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": "soundmebackend",
"version": "1.0.0",
"description": "First backend trying out from youtube https://www.youtube.com/watch?v=1o9YOHeKhNQ&ab_channel=Rettson",
"main": "server.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": "yarn run build"
},
"author": "Rohit Pakhrin",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.18.2",
"helmet": "^6.0.1",
"joi": "^17.8.4",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^7.0.2",
"mongose": "^0.0.2-security",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"_moduleAliases": {
"@/resources": "dist/resources",
"@/utils": "dist/utils",
"@/middleware": "dist/middleware"
}
}