-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.14 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
{
"name": "api-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx --watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "node build/index.js",
"lint": "eslint --ext .ts src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "4.18.2",
"module-alias": "^2.2.3",
"mongoose": "^8.19.2",
"morgan": "^1.10.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.24",
"@types/morgan": "^1.9.10",
"@types/node": "^20.19.23",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"_moduleAliases": {
"@routes": "src/routes",
"@controllers": "src/controllers",
"@middlewares": "src/middleware",
"@models": "src/models",
"@utils": "src/utils",
"@config": "src/config",
"@services": "src/services"
}
}