-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "api-users",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js",
"build:digitalocean": "npm install --production=false && npm run build && npm prune --production"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^8.6.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"_moduleAliases": {
"@server": "dist/server",
"@config": "dist/config",
"@controllers": "dist/controllers",
"@services": "dist/services",
"@repositories": "dist/repositories",
"@models": "dist/models",
"@routes": "dist/routes",
"@middlewares": "dist/middlewares"
}
}